Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
16 | public static function setup() |
||
17 | { |
||
18 | if (!self::$coverage) { |
||
19 | $filter = new \PHP_CodeCoverage_Filter(); |
||
20 | $filter->addDirectoryToBlacklist(__DIR__.'/../../../vendor'); |
||
21 | $filter->addDirectoryToWhitelist(__DIR__.'/../../../Bundle'); |
||
22 | self::$coverage = new \PHP_CodeCoverage(null, $filter); |
||
23 | } |
||
24 | } |
||
25 | |||
54 |