Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
13 | 1 | protected function getValidationMessage( |
|
14 | \ReflectionFunctionAbstract $reflection, |
||
15 | string $parameter, |
||
16 | ): string { |
||
17 | 1 | $pattern = "Missing required argument for the `{$parameter}` parameter for `%s` %s."; |
|
18 | 1 | return $this->renderFunctionAndParameter($reflection, $pattern); |
|
19 | } |
||
21 |