Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public static function loadFile($filename) |
||
13 | { |
||
14 | if (class_exists(\PHPUnit\Util\Fileloader::class)) { |
||
15 | // PHPUnit 6.x |
||
16 | \PHPUnit\Util\Fileloader::checkAndLoad($filename); |
||
17 | } else { |
||
18 | // @codeCoverageIgnoreStart |
||
19 | // PHPUnit 7.x+ |
||
20 | \PHPUnit\Util\FileLoader::checkAndLoad($filename); |
||
21 | // @codeCoverageIgnoreEnd |
||
25 |