| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 5 | interface CoverageReporterInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Generate clover coverage report |
||
| 9 | * |
||
| 10 | * @param string $target Report filename |
||
| 11 | */ |
||
| 12 | public function clover($target); |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Generate html coverage report |
||
| 16 | * |
||
| 17 | * @param string $target Report filename |
||
| 18 | */ |
||
| 19 | public function html($target); |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Generate php coverage report |
||
| 23 | * @param string $target Report filename |
||
| 24 | */ |
||
| 25 | public function php($target); |
||
| 26 | } |
||
| 27 |