Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | class ArgumentException extends AutowireException |
||
11 | { |
||
12 | /** |
||
13 | * @param \ReflectionParameter $parameter Parameter caused error. |
||
14 | * @param \ReflectionFunctionAbstract $context Context method or constructor or function. |
||
15 | */ |
||
16 | public function __construct( |
||
26 | } |
||
27 | |||
28 | public function getParameter(): \ReflectionParameter |
||
29 | { |
||
30 | return $this->parameter; |
||
31 | } |
||
32 | |||
33 | public function getContext(): \ReflectionFunctionAbstract |
||
36 | } |
||
37 | } |
||
38 |