Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | 2 | public static function match($pattern, $subject) |
|
23 | { |
||
24 | 2 | $result = @preg_match($pattern, $subject); |
|
25 | 2 | if (false === $result) { |
|
26 | 1 | throw new UnexpectedValueException( |
|
27 | 1 | sprintf('preg_match error (%d): "%s"', preg_last_error(), $pattern) |
|
28 | ); |
||
29 | } |
||
30 | |||
31 | 1 | return $result; |
|
32 | } |
||
34 |