| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | 16 | public function __construct($middlewareDefinition, string $message = self::DEFAULT_MESSAGE) |
|
| 22 | { |
||
| 23 | 16 | $definitionString = $this->convertDefinitionToString($middlewareDefinition); |
|
| 24 | 16 | if ($definitionString !== null) { |
|
| 25 | 12 | $message .= ' Got ' . $definitionString . '.'; |
|
| 26 | } |
||
| 27 | |||
| 28 | 16 | parent::__construct($message); |
|
| 29 | 16 | } |
|
| 71 |