Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
44 | public function writeError(string $message): void |
||
45 | { |
||
46 | $this->getConsoleIO()->writeln(sprintf( |
||
47 | '<error> %s </error>', |
||
48 | str_repeat(' ', strlen($message)) |
||
49 | )); |
||
50 | $this->getConsoleIO()->writeln(sprintf( |
||
51 | '<error> %s </error>', |
||
52 | $message |
||
53 | )); |
||
54 | $this->getConsoleIO()->writeln(sprintf( |
||
55 | '<error> %s </error>', |
||
56 | str_repeat(' ', strlen($message)) |
||
57 | )); |
||
58 | } |
||
59 | } |
||
61 |