MIR1507
MissingConstructor
A class has non-nullable, uninitialized typed properties but no constructor to initialize them.
Example
Section titled “Example”<?phpclass C { public int $n; } // MissingConstructorHow to fix
Section titled “How to fix”Add a constructor that initializes the properties, or give them defaults.