| 1 | <?php |
||
| 12 | class HtmlResult |
||
| 13 | { |
||
| 14 | /** @var Facade */ |
||
| 15 | private $html; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * CloverResult constructor. |
||
| 19 | */ |
||
| 20 | 1 | public function __construct() |
|
| 21 | { |
||
| 22 | 1 | $this->html = new Facade(); |
|
| 23 | 1 | } |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @param CodeCoverage $codeCoverage |
||
| 27 | * @param OutputPath $targetPath |
||
| 28 | */ |
||
| 29 | public function process(CodeCoverage $codeCoverage, OutputPath $targetPath) |
||
| 33 | } |
||
| 34 |