@@ -23,13 +23,13 @@ |
||
23 | 23 | class CoverageCheckStyle extends SymfonyStyle |
24 | 24 | { |
25 | 25 | #[\Override] |
26 | - public function error(array|string $message, bool $onlyPercentage = false): void |
|
26 | + public function error(array | string $message, bool $onlyPercentage = false): void |
|
27 | 27 | { |
28 | 28 | $this->block($message, ($onlyPercentage ? null : 'ERROR'), 'fg=white;bg=red', ' ', true); |
29 | 29 | } |
30 | 30 | |
31 | 31 | #[\Override] |
32 | - public function success(array|string $message, bool $onlyPercentage = false): void |
|
32 | + public function success(array | string $message, bool $onlyPercentage = false): void |
|
33 | 33 | { |
34 | 34 | $this->block($message, ($onlyPercentage ? null : 'OK'), 'fg=black;bg=green', ' ', true); |
35 | 35 | } |