1 | <?php |
||
10 | class Factory |
||
11 | { |
||
12 | /** |
||
13 | * @return ArgumentGenerator |
||
14 | */ |
||
15 | 4 | public function argumentGenerator(): ArgumentGenerator |
|
22 | |||
23 | /** |
||
24 | * @return ConstantGenerator |
||
25 | */ |
||
26 | 3 | public function constantGenerator(): ConstantGenerator |
|
35 | |||
36 | /** |
||
37 | * @return DocBlockGenerator |
||
38 | */ |
||
39 | 6 | public function docBlockGenerator(): DocBlockGenerator |
|
45 | |||
46 | /** |
||
47 | * @return MethodGenerator |
||
48 | */ |
||
49 | 3 | public function methodGenerator(): MethodGenerator |
|
58 | |||
59 | /** |
||
60 | * @return PropertyGenerator |
||
61 | */ |
||
62 | 3 | public function propertyGenerator(): PropertyGenerator |
|
71 | |||
72 | /** |
||
73 | * @return TagGenerator |
||
74 | */ |
||
75 | 7 | public function tagGenerator(): TagGenerator |
|
79 | |||
80 | /** |
||
81 | * @return TraitGenerator |
||
82 | */ |
||
83 | 1 | public function traitGenerator(): TraitGenerator |
|
92 | |||
93 | /** |
||
94 | * @return InterfaceGenerator |
||
95 | */ |
||
96 | 1 | public function interfaceGenerator(): InterfaceGenerator |
|
105 | |||
106 | /** |
||
107 | * @return TypeGenerator |
||
108 | */ |
||
109 | 7 | public function typeGenerator(): TypeGenerator |
|
113 | |||
114 | /** |
||
115 | * @return ValueGenerator |
||
116 | */ |
||
117 | 7 | public function valueGenerator(): ValueGenerator |
|
121 | |||
122 | /** |
||
123 | * @return VisibilityGenerator |
||
124 | */ |
||
125 | 6 | public function visibilityGenerator(): VisibilityGenerator |
|
129 | } |
||
130 |