Complex classes like ReflectionParameter often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use ReflectionParameter, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
22 | class ReflectionParameter extends BaseReflectionParameter |
||
23 | { |
||
24 | use InternalPropertiesEmulationTrait; |
||
25 | |||
26 | /** |
||
27 | * Reflection function or method |
||
28 | * |
||
29 | * @var \ReflectionFunctionAbstract |
||
30 | */ |
||
31 | private $declaringFunction; |
||
32 | |||
33 | /** |
||
34 | * Stores the default value for node (if present) |
||
35 | * |
||
36 | * @var mixed |
||
37 | */ |
||
38 | private $defaultValue = null; |
||
39 | |||
40 | /** |
||
41 | * Whether or not default value is constant |
||
42 | * |
||
43 | * @var bool |
||
44 | */ |
||
45 | private $isDefaultValueConstant = false; |
||
46 | |||
47 | /** |
||
48 | * Name of the constant of default value |
||
49 | * |
||
50 | * @var string |
||
51 | */ |
||
52 | private $defaultValueConstantName; |
||
53 | |||
54 | /** |
||
55 | * Index of parameter in the list |
||
56 | * |
||
57 | * @var int |
||
58 | */ |
||
59 | private $parameterIndex = 0; |
||
60 | |||
61 | /** |
||
62 | * Concrete parameter node |
||
63 | * |
||
64 | * @var Param |
||
65 | */ |
||
66 | private $parameterNode; |
||
67 | |||
68 | /** |
||
69 | * Initializes a reflection for the property |
||
70 | * |
||
71 | * @param string|array $unusedFunctionName Name of the function/method |
||
72 | * @param string $parameterName Name of the parameter to reflect |
||
73 | * @param Param $parameterNode Parameter definition node |
||
74 | * @param int $parameterIndex Index of parameter |
||
75 | * @param \ReflectionFunctionAbstract $declaringFunction |
||
76 | */ |
||
77 | 10 | public function __construct( |
|
105 | |||
106 | /** |
||
107 | * Emulating original behaviour of reflection |
||
108 | */ |
||
109 | 1 | public function ___debugInfo() |
|
115 | |||
116 | /** |
||
117 | * Returns string representation of this parameter. |
||
118 | * |
||
119 | * @return string |
||
120 | */ |
||
121 | 3 | public function __toString() |
|
154 | |||
155 | /** |
||
156 | * {@inheritDoc} |
||
157 | */ |
||
158 | 2 | public function allowsNull() |
|
167 | |||
168 | /** |
||
169 | * {@inheritDoc} |
||
170 | */ |
||
171 | 1 | public function canBePassedByValue() |
|
175 | |||
176 | /** |
||
177 | * @inheritDoc |
||
178 | */ |
||
179 | 1 | public function getClass() |
|
194 | |||
195 | /** |
||
196 | * {@inheritDoc} |
||
197 | */ |
||
198 | 2 | public function getDeclaringClass() |
|
206 | |||
207 | /** |
||
208 | * {@inheritDoc} |
||
209 | */ |
||
210 | 3 | public function getDeclaringFunction() |
|
214 | |||
215 | /** |
||
216 | * {@inheritDoc} |
||
217 | */ |
||
218 | 5 | public function getDefaultValue() |
|
226 | |||
227 | /** |
||
228 | * {@inheritDoc} |
||
229 | */ |
||
230 | 2 | public function getDefaultValueConstantName() |
|
238 | |||
239 | /** |
||
240 | * @inheritDoc |
||
241 | */ |
||
242 | 4 | public function getName() |
|
246 | |||
247 | /** |
||
248 | * {@inheritDoc} |
||
249 | */ |
||
250 | 1 | public function getPosition() |
|
254 | |||
255 | /** |
||
256 | * @inheritDoc |
||
257 | */ |
||
258 | 1 | public function getType() |
|
271 | |||
272 | /** |
||
273 | * @inheritDoc |
||
274 | */ |
||
275 | 2 | public function hasType() |
|
281 | |||
282 | /** |
||
283 | * @inheritDoc |
||
284 | */ |
||
285 | 1 | public function isArray() |
|
289 | |||
290 | /** |
||
291 | * @inheritDoc |
||
292 | */ |
||
293 | 1 | public function isCallable() |
|
297 | |||
298 | /** |
||
299 | * @inheritDoc |
||
300 | */ |
||
301 | 10 | public function isDefaultValueAvailable() |
|
305 | |||
306 | /** |
||
307 | * {@inheritDoc} |
||
308 | */ |
||
309 | 1 | public function isDefaultValueConstant() |
|
313 | |||
314 | /** |
||
315 | * {@inheritDoc} |
||
316 | */ |
||
317 | 3 | public function isOptional() |
|
321 | |||
322 | /** |
||
323 | * @inheritDoc |
||
324 | */ |
||
325 | 3 | public function isPassedByReference() |
|
329 | |||
330 | /** |
||
331 | * @inheritDoc |
||
332 | */ |
||
333 | 3 | public function isVariadic() |
|
337 | |||
338 | /** |
||
339 | * Returns if all following parameters have a default value definition. |
||
340 | * |
||
341 | * @return bool |
||
342 | * @throws ReflectionException If could not fetch declaring function reflection |
||
343 | */ |
||
344 | 3 | protected function haveSiblingsDefalutValues() |
|
361 | } |
||
362 |