1 | <?php |
||
11 | class CloverLoader implements FileChecker |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $file; |
||
17 | /** |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $coveredLines; |
||
21 | |||
22 | /** |
||
23 | * XMLReport constructor. |
||
24 | * @param string $file the path the to phpunit clover file |
||
25 | */ |
||
26 | public function __construct($file) |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function getLines() |
||
64 | |||
65 | /** |
||
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | public function isValidLine($file, $line) |
||
76 | |||
77 | /** |
||
78 | * {@inheritdoc} |
||
79 | */ |
||
80 | public function handleNotFoundFile() |
||
84 | |||
85 | /** |
||
86 | * {@inheritdoc} |
||
87 | */ |
||
88 | public static function getDescription() |
||
92 | } |
||
93 |