Skip to content

UndefinedProperty

A property is accessed that is not declared on the class.

<?php
class Order {
public int $id;
}
$order = new Order();
echo $order->total; // property not declared

Declare the property on the class or fix the property name.