| 1 | <?php |
||
| 12 | class CoverageOutputPaths |
||
| 13 | { |
||
| 14 | /** @var OutputFile */ |
||
| 15 | private $cloverFilePath; |
||
| 16 | |||
| 17 | /** @var OutputPath */ |
||
| 18 | private $xmlPath; |
||
| 19 | |||
| 20 | /** @var OutputPath */ |
||
| 21 | private $htmlPath; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * CoverageOutputPaths constructor. |
||
| 25 | * @param OutputFile $cloverFilePath |
||
| 26 | * @param OutputPath $xmlPath |
||
| 27 | * @param OutputPath $htmlPath |
||
| 28 | */ |
||
| 29 | 1 | public function __construct(OutputFile $cloverFilePath, OutputPath $xmlPath, OutputPath $htmlPath) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @return OutputFile |
||
| 38 | */ |
||
| 39 | 4 | public function getCloverFilePath() |
|
| 43 | |||
| 44 | /** |
||
| 45 | * @return OutputPath |
||
| 46 | */ |
||
| 47 | 4 | public function getXmlPath() |
|
| 51 | |||
| 52 | /** |
||
| 53 | * @return OutputPath |
||
| 54 | */ |
||
| 55 | 4 | public function getHtmlPath() |
|
| 59 | } |
||
| 60 |