| 1 | <?php |
||
| 7 | class ToManyAsArrayEntity |
||
| 8 | { |
||
| 9 | /** @var int */ |
||
| 10 | private $id; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | private $payload; |
||
| 14 | |||
| 15 | /** @var ToManyAsArrayEntity[]|Collection */ |
||
| 16 | private $children; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return int |
||
| 20 | */ |
||
| 21 | public function getId() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public function getPayload() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return ToManyAsArrayEntity[]|Collection |
||
| 36 | */ |
||
| 37 | public function getChildren() |
||
| 41 | } |
||
| 42 |