1 | <?php |
||
32 | class ReflectionMethodFactory extends ReflectorFactory |
||
33 | { |
||
34 | const REFLECTION_OBJECT = ReflectionMethod::class; |
||
35 | |||
36 | /** |
||
37 | * @var PHPNativeReflectionMethod |
||
38 | */ |
||
39 | protected $reflector; |
||
40 | |||
41 | /** |
||
42 | * @var ReflectionMethod |
||
43 | */ |
||
44 | protected $object; |
||
45 | |||
46 | /** |
||
47 | * @var Hashmap |
||
48 | */ |
||
49 | protected $parameters; |
||
50 | |||
51 | /** |
||
52 | * @var TypeParser |
||
53 | */ |
||
54 | protected $typeParser; |
||
55 | |||
56 | /** |
||
57 | * Returns a new ReflectionMethodFactory using the given class and |
||
58 | * method names |
||
59 | * |
||
60 | * @param string $class The classname of the method |
||
61 | * @param string $method The method to reflect |
||
62 | * @return ReflectionMethodFactory |
||
63 | */ |
||
64 | public static function fromName(string $class, string $method) |
||
71 | |||
72 | 20 | public function __construct(PHPNativeReflector $reflector) |
|
78 | |||
79 | /** |
||
80 | * Builds the ReflectionMethod from the provided parameters, |
||
81 | * optionally linking to a parent ReflectionComposite |
||
82 | * |
||
83 | * @param ReflectionComposite $parent The reflector for the class |
||
84 | * this method belongs to |
||
85 | * @return ReflectionMethod |
||
86 | */ |
||
87 | 20 | public function build(?ReflectionComposite $parent = null) |
|
108 | |||
109 | /** |
||
110 | * Creates the Method's parameter's property with a fixd list of |
||
111 | * the appropriate size |
||
112 | */ |
||
113 | 20 | protected function initParams() |
|
121 | |||
122 | /** |
||
123 | * Processes a param docblock annotation and uses it to decorate |
||
124 | * a method parameter |
||
125 | * |
||
126 | * @param string $name Unused. Should be 'param' |
||
127 | * @param string $value The annotation value |
||
128 | */ |
||
129 | 20 | protected function addParamAnnotation($name, $value) : void |
|
152 | |||
153 | /** |
||
154 | * Adds a parameter to the method, based on it's native |
||
155 | * ReflectionParameter |
||
156 | * |
||
157 | * @param PHPNativeReflectionParameter $reflect |
||
158 | */ |
||
159 | 20 | protected function addParameter |
|
178 | } |
||
179 | |||
180 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..