Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function expectExceptionMessageMatches(string $regularExpression) : void |
||
22 | { |
||
23 | if (\is_callable('parent::expectExceptionMessageMatches')) { |
||
24 | parent::expectExceptionMessageMatches($regularExpression); |
||
25 | |||
26 | return; |
||
27 | } |
||
28 | |||
29 | parent::expectExceptionMessageRegExp($regularExpression); |
||
30 | } |
||
32 |