1 | <?php |
||
20 | class ClassGenerator |
||
21 | { |
||
22 | /** |
||
23 | * @var GeneratorParser |
||
24 | */ |
||
25 | private $generatorParser; |
||
26 | |||
27 | /** |
||
28 | * @var GeneratorEntity |
||
29 | */ |
||
30 | private $generatorEntity; |
||
31 | |||
32 | /** |
||
33 | * @var GeneratorSerialiser |
||
34 | */ |
||
35 | private $generatorSerialiser; |
||
36 | |||
37 | /** |
||
38 | * @var string |
||
39 | */ |
||
40 | private $name; |
||
41 | |||
42 | /** |
||
43 | * @param GeneratorParser $generatorParser |
||
44 | * @param GeneratorEntity $generatorEntity |
||
45 | * @param GeneratorSerialiser $generatorSerialiser |
||
46 | */ |
||
47 | public function __construct( |
||
56 | |||
57 | /** |
||
58 | * @param Definition $definition |
||
59 | */ |
||
60 | public function generateClasses(Definition $definition) |
||
71 | |||
72 | /** |
||
73 | * @return [] |
||
|
|||
74 | */ |
||
75 | public function getParser() |
||
82 | |||
83 | /** |
||
84 | * @return [] |
||
85 | */ |
||
86 | public function getEntity() |
||
93 | |||
94 | /** |
||
95 | * @return [] |
||
96 | */ |
||
97 | public function getSerialiser() |
||
104 | |||
105 | /** |
||
106 | * @return ClassGenerator |
||
107 | */ |
||
108 | public static function factory() |
||
116 | } |
||
117 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.