| 1 | <?php |
||
| 19 | class ContentDraftList extends ValueObject implements IteratorAggregate |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var int |
||
| 23 | */ |
||
| 24 | public $totalCount = 0; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var \eZ\Publish\API\Repository\Values\Content\DraftList\ContentDraftListItemInterface[] |
||
| 28 | */ |
||
| 29 | public $items = []; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function getIterator(): Iterator |
||
| 38 | } |
||
| 39 |