| 1 | <?php |
||
| 5 | class TransportOperations |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var TransportOperation[] |
||
| 9 | */ |
||
| 10 | private $transportOperations = []; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param TransportOperation[] $transportOperations |
||
| 14 | */ |
||
| 15 | 4 | public function __construct(array $transportOperations) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @param TransportOperation $transportOperation |
||
| 24 | */ |
||
| 25 | 1 | private function add(TransportOperation $transportOperation) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @return TransportOperation[] |
||
| 32 | */ |
||
| 33 | 1 | public function getTransportOperations() |
|
| 37 | } |
||
| 38 |