Skip to content

MIR1104

MissingPropertyType

A class property has no declared type.

<?php
class C { public $value; } // MissingPropertyType

Add a property type, e.g. public int $value;.