Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | protected function prepareConsoleStyles(): void |
||
21 | { |
||
22 | $errorStyle = new OutputFormatterStyle('white', 'red', ['bold']); |
||
23 | $this->output->getFormatter()->setStyle('error', $errorStyle); |
||
24 | |||
25 | $infoStyle = new OutputFormatterStyle('white', 'blue', ['bold']); |
||
26 | $this->output->getFormatter()->setStyle('info', $infoStyle); |
||
27 | } |
||
28 | } |