1 | <?php |
||
10 | class Factory |
||
11 | { |
||
12 | /** |
||
13 | * @return ArgumentGenerator |
||
14 | */ |
||
15 | 5 | public function argumentGenerator(): ArgumentGenerator |
|
22 | |||
23 | /** |
||
24 | * @return ClassGenerator |
||
25 | */ |
||
26 | 1 | public function classGenerator(): ClassGenerator |
|
35 | |||
36 | /** |
||
37 | * @return ConstantGenerator |
||
38 | */ |
||
39 | 4 | public function constantGenerator(): ConstantGenerator |
|
48 | |||
49 | /** |
||
50 | * @return DocBlockGenerator |
||
51 | */ |
||
52 | 7 | public function docBlockGenerator(): DocBlockGenerator |
|
58 | |||
59 | /** |
||
60 | * @return InterfaceGenerator |
||
61 | */ |
||
62 | 1 | public function interfaceGenerator(): InterfaceGenerator |
|
71 | |||
72 | /** |
||
73 | * @return MethodGenerator |
||
74 | */ |
||
75 | 4 | public function methodGenerator(): MethodGenerator |
|
84 | |||
85 | /** |
||
86 | * @return PropertyGenerator |
||
87 | */ |
||
88 | 4 | public function propertyGenerator(): PropertyGenerator |
|
97 | |||
98 | /** |
||
99 | * @return TagGenerator |
||
100 | */ |
||
101 | 8 | public function tagGenerator(): TagGenerator |
|
105 | |||
106 | /** |
||
107 | * @return TraitGenerator |
||
108 | */ |
||
109 | 1 | public function traitGenerator(): TraitGenerator |
|
118 | |||
119 | /** |
||
120 | * @return TypeGenerator |
||
121 | */ |
||
122 | 8 | public function typeGenerator(): TypeGenerator |
|
126 | |||
127 | /** |
||
128 | * @return ValueGenerator |
||
129 | */ |
||
130 | 8 | public function valueGenerator(): ValueGenerator |
|
134 | |||
135 | /** |
||
136 | * @return VisibilityGenerator |
||
137 | */ |
||
138 | 7 | public function visibilityGenerator(): VisibilityGenerator |
|
142 | } |
||
143 |