Remove type cast

This commit is contained in:
Dennis Eichhorn 2018-09-22 13:04:59 +02:00
parent 3fbb441d13
commit dad943059f

View File

@ -103,7 +103,7 @@ class Header implements \Serializable
*/
public function getType() : int
{
return (int) $this->type;
return $this->type;
}
/**