1 | <?php |
||
18 | class BookmarkList extends ValueObject implements IteratorAggregate |
||
19 | { |
||
20 | /** |
||
21 | * The total number of bookmarks. |
||
22 | * |
||
23 | * @var int |
||
24 | */ |
||
25 | public $totalCount = 0; |
||
26 | |||
27 | /** |
||
28 | * List of bookmarked locations. |
||
29 | * |
||
30 | * @var \eZ\Publish\API\Repository\Values\Content\Location[] |
||
31 | */ |
||
32 | public $items = []; |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function getIterator() |
||
41 | } |
||
42 |