1 | <?php |
||
8 | class GeneratorContainers extends AbstractGeneratorAware implements \JsonSerializable |
||
9 | { |
||
10 | /** |
||
11 | * Structs |
||
12 | * @var StructContainer |
||
13 | */ |
||
14 | private $structs; |
||
15 | /** |
||
16 | * Services |
||
17 | * @var ServiceContainer |
||
18 | */ |
||
19 | private $services; |
||
20 | /** |
||
21 | * @param Generator $generator |
||
22 | */ |
||
23 | public function __construct(Generator $generator) |
||
28 | /** |
||
29 | * @return GeneratorContainers |
||
30 | */ |
||
31 | protected function initStructs() |
||
38 | /** |
||
39 | * @return GeneratorContainers |
||
40 | */ |
||
41 | protected function initServices() |
||
48 | /** |
||
49 | * @return ServiceContainer |
||
50 | */ |
||
51 | public function getServices() |
||
55 | /** |
||
56 | * @return StructContainer |
||
57 | */ |
||
58 | public function getStructs() |
||
69 | } |
||
70 |