1 | <?php |
||
10 | class Factory |
||
11 | { |
||
12 | /** |
||
13 | * @return ArgumentGenerator |
||
14 | */ |
||
15 | 3 | public function argumentGenerator(): ArgumentGenerator |
|
22 | |||
23 | /** |
||
24 | * @return ConstantGenerator |
||
25 | */ |
||
26 | 2 | public function constantGenerator(): ConstantGenerator |
|
33 | |||
34 | /** |
||
35 | * @return DocBlockGenerator |
||
36 | */ |
||
37 | 4 | public function docBlockGenerator(): DocBlockGenerator |
|
43 | |||
44 | /** |
||
45 | * @return MethodGenerator |
||
46 | */ |
||
47 | 2 | public function methodGenerator(): MethodGenerator |
|
56 | |||
57 | /** |
||
58 | * @return PropertyGenerator |
||
59 | */ |
||
60 | 2 | public function propertyGenerator(): PropertyGenerator |
|
69 | |||
70 | /** |
||
71 | * @return TagGenerator |
||
72 | */ |
||
73 | 5 | public function tagGenerator(): TagGenerator |
|
77 | |||
78 | /** |
||
79 | * @return TraitGenerator |
||
80 | */ |
||
81 | 1 | public function traitGenerator(): TraitGenerator |
|
90 | |||
91 | /** |
||
92 | * @return TypeGenerator |
||
93 | */ |
||
94 | 5 | public function typeGenerator(): TypeGenerator |
|
98 | |||
99 | /** |
||
100 | * @return ValueGenerator |
||
101 | */ |
||
102 | 6 | public function valueGenerator(): ValueGenerator |
|
106 | |||
107 | /** |
||
108 | * @return VisibilityGenerator |
||
109 | */ |
||
110 | 5 | public function visibilityGenerator(): VisibilityGenerator |
|
114 | } |
||
115 |