1 | <?php |
||
8 | class SearchResult extends ValueObject implements \IteratorAggregate |
||
9 | { |
||
10 | public function __construct(array $properties = []) |
||
18 | |||
19 | /** |
||
20 | * The total number of Trash items. |
||
21 | * |
||
22 | * @var int |
||
23 | */ |
||
24 | public $totalCount = 0; |
||
25 | |||
26 | /** |
||
27 | * The total number of Trash items. |
||
28 | * |
||
29 | * @deprecated Property is here purely for BC with 5.x/6.x. |
||
30 | * @var int |
||
31 | */ |
||
32 | public $count = 0; |
||
33 | |||
34 | /** |
||
35 | * The Trash items found for the query. |
||
36 | * |
||
37 | * @var \eZ\Publish\API\Repository\Values\Content\TrashItem[] |
||
38 | */ |
||
39 | public $items = []; |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function getIterator() |
||
48 | } |
||
49 |
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.