| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | 6 | public function __construct(string $serviceName, int $code = 0, Throwable $previous = null) |
|
| 15 | { |
||
| 16 | 6 | $this->serviceName = $serviceName; |
|
| 17 | 6 | $message = sprintf("The given service `%s` is not a valid callable.", $serviceName); |
|
| 18 | 6 | parent::__construct($message, $code, $previous); |
|
| 19 | 6 | } |
|
| 20 | |||
| 29 |