| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public static function assertMatchesRegularExpression(string $pattern, string $string, string $message = '') : void |
||
| 35 | { |
||
| 36 | is_callable('parent::assertMatchesRegularExpression') |
||
| 37 | ? parent::assertMatchesRegularExpression(...func_get_args()) |
||
| 38 | : parent::assertRegExp(...func_get_args()); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.