Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class MissingArgumentException extends ContainerException { |
||
14 | private $arg; |
||
15 | private $function; |
||
16 | |||
17 | /** |
||
18 | * MissingArgumentException constructor. |
||
19 | * |
||
20 | * @param string $arg The name of the missing parameter. |
||
21 | * @param string $function The name of the function being called, but can be empty when not known. |
||
22 | */ |
||
23 | 2 | public function __construct($arg, $function = '') { |
|
36 |