UndefinedProperty
A property is accessed that is not declared on the class.
Example
Section titled “Example”<?phpclass Order { public int $id;}
$order = new Order();echo $order->total; // property not declaredHow to fix
Section titled “How to fix”Declare the property on the class or fix the property name.