MIR1504
NoInterfaceProperties
A property is accessed on an interface that seals properties and does not declare it via @property.
Example
Section titled “Example”<?phpinterface I {}function f(I $i){ return $i->x; } // NoInterfacePropertiesHow to fix
Section titled “How to fix”Declare the property with @property, or access it on the implementing class.