Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
27 | 27 | public static function isValidPlaceholderOrThrowException(string $placeholder) |
|
28 | { |
||
29 | 27 | if (!static::isValidPlaceholder($placeholder)) { |
|
30 | 5 | throw new \RuntimeException( |
|
31 | 5 | 'Invalid placeholder given; please wrap your placeholder with a percent sign %foobar%' |
|
32 | ); |
||
33 | } |
||
34 | 22 | } |
|
35 | } |
||
36 |