Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 31 | public function onEngineBeforeStart() |
|
25 | { |
||
26 | 31 | $formatter = $this->getOutput()->getFormatter(); |
|
27 | $formatter->setStyle('ok', $this->createNewStyle('green')); |
||
28 | 31 | $formatter->setStyle('skip', $this->createNewStyle('yellow')); |
|
29 | 31 | $formatter->setStyle('warning', $this->createNewStyle('yellow')); |
|
30 | 31 | $formatter->setStyle('incomplete', $this->createNewStyle('blue')); |
|
31 | 31 | $formatter->setStyle('fail', $this->createNewStyle('red')); |
|
32 | 31 | $formatter->setStyle('error', $this->createNewStyle('red')); |
|
33 | 31 | $formatter->setStyle('abnormal', $this->createNewStyle('magenta')); |
|
34 | 31 | } |
|
35 | 31 | ||
41 |