| @@ -8,8 +8,16 @@ | ||
| 8 | 8 | |
| 9 | 9 | class DefaultEntity implements Entity |
| 10 | 10 | { |
| 11 | 11 | public $items = []; |
| 12 | + /** | |
| 13 | + * Declared explicitly: assigned from the outside in | |
| 14 | + * EntityManager::prepareEntitiesToDisplay(); dynamic properties are | |
| 15 | + * deprecated since PHP 8.2. | |
| 16 | + */ | |
| 17 | + public $items_sort = []; | |
| 18 | + | |
| 19 | + public $filter = []; | |
| 12 | 20 | |
| 13 | 21 | public $entityName = ''; |
| 14 | 22 | |
| 15 | 23 | public function __construct( $postMetaName ){ |