1 | <?php |
||
12 | class TrashResult extends ValueObject implements \IteratorAggregate |
||
13 | { |
||
14 | /** |
||
15 | * The total number of Trash items matching criteria (ignores offset & limit arguments). |
||
16 | * |
||
17 | * @var int |
||
18 | */ |
||
19 | public $totalCount = 0; |
||
20 | |||
21 | /** |
||
22 | * The value objects found for the query. |
||
23 | * |
||
24 | * @var \eZ\Publish\SPI\Persistence\Content\Location\Trashed[] |
||
25 | */ |
||
26 | public $items = []; |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function getIterator() |
||
35 | } |
||
36 |