Passed
Push — master ( 0707d9...735e6d )
by Eric
02:14
created
src/Style/CoverageCheckStyle.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,13 +23,13 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.