| 1 | <?php |
||
| 15 | class NotificationList extends ValueObject implements IteratorAggregate |
||
| 16 | { |
||
| 17 | /** @var int */ |
||
| 18 | public $totalCount = 0; |
||
| 19 | |||
| 20 | /** @var \eZ\Publish\API\Repository\Values\Notification\Notification[] */ |
||
| 21 | public $items = []; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function getIterator() |
||
| 30 | } |
||
| 31 |