| 1 | <?php |
||
| 12 | class CodeCoverageConfiguration |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $reportPath; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Constructor. |
||
| 21 | * |
||
| 22 | * @param EventEmitterInterface $eventEmitter |
||
| 23 | */ |
||
| 24 | public function __construct(EventEmitterInterface $eventEmitter) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Handle the code-coverage.start event. |
||
| 31 | * |
||
| 32 | * @param AbstractCodeCoverageReporter $reporter |
||
| 33 | */ |
||
| 34 | public function onCodeCoverageStart(AbstractCodeCoverageReporter $reporter) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function getReportPath() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param string $reportPath |
||
| 51 | * @return $this |
||
| 52 | */ |
||
| 53 | public function setReportPath($reportPath) |
||
| 58 | } |
||
| 59 |