| 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 | /** @var OutputFile */ |
||
| 24 | private $textFile; |
||
| 25 | |||
| 26 | /** @var bool */ |
||
| 27 | private $textToConsole; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * CoverageOutputPaths constructor. |
||
| 31 | * @param OutputFile $cloverFilePath |
||
| 32 | * @param OutputPath $xmlPath |
||
| 33 | * @param OutputPath $htmlPath |
||
| 34 | * @param OutputFile $textFile |
||
| 35 | * @param bool $textToConsole |
||
| 36 | */ |
||
| 37 | 2 | public function __construct( |
|
| 50 | |||
| 51 | /** |
||
| 52 | * @return OutputFile |
||
| 53 | */ |
||
| 54 | 7 | public function getCloverFilePath() |
|
| 58 | |||
| 59 | /** |
||
| 60 | * @return OutputPath |
||
| 61 | */ |
||
| 62 | 7 | public function getXmlPath() |
|
| 66 | |||
| 67 | /** |
||
| 68 | * @return OutputPath |
||
| 69 | */ |
||
| 70 | 7 | public function getHtmlPath() |
|
| 74 | |||
| 75 | /** |
||
| 76 | * @return OutputFile |
||
| 77 | */ |
||
| 78 | 7 | public function getTextFile() |
|
| 82 | |||
| 83 | /** |
||
| 84 | * @return bool |
||
| 85 | */ |
||
| 86 | 7 | public function isTextToConsoleEnabled() |
|
| 90 | } |
||
| 91 |