MIR1104
MissingPropertyType
A class property has no declared type.
Example
Section titled “Example”<?phpclass C { public $value; } // MissingPropertyTypeHow to fix
Section titled “How to fix”Add a property type, e.g. public int $value;.
MIR1104
A class property has no declared type.
<?phpclass C { public $value; } // MissingPropertyTypeAdd a property type, e.g. public int $value;.