Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function exceptionProvider() |
||
17 | { |
||
18 | return [ |
||
19 | [new SystemException("error message"), new SystemException("")], |
||
20 | [new ApplicationException("error message"), new ApplicationException("")], |
||
21 | [SystemException::class, new SystemException("")], |
||
22 | [ApplicationException::class, new ApplicationException("")], |
||
23 | ]; |
||
24 | } |
||
25 | } |
||
26 |