| 1 | <?php |
||
| 23 | class LocationList extends ValueObject implements IteratorAggregate |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * the total count of found locations (filtered by permissions). |
||
| 27 | * |
||
| 28 | * @var int |
||
| 29 | */ |
||
| 30 | protected $totalCount; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * the partial list of locations controlled by offset/limit. |
||
| 34 | * |
||
| 35 | * @var \eZ\Publish\API\Repository\Values\Content\Location[] |
||
| 36 | */ |
||
| 37 | protected $locations; |
||
| 38 | |||
| 39 | public function getIterator(): Traversable |
||
| 43 | } |
||
| 44 |