Passed
Push — master ( 9acfaa...693f5f )
by Jakub
01:54
created
src/Job.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     /** @var callable Task */
28 28
     protected $callback;
29 29
     protected array $params = [];
30
-    protected bool|string $skip;
30
+    protected bool | string $skip;
31 31
     protected string $result = self::RESULT_PASSED;
32 32
     protected string $output = "";
33 33
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         string $name,
36 36
         callable $callback,
37 37
         array $params = [],
38
-        bool|string $skip = false
38
+        bool | string $skip = false
39 39
     ) {
40 40
         $this->name = $name;
41 41
         $this->callback = $callback;
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         return $this->params;
59 59
     }
60 60
 
61
-    protected function getSkip(): bool|string
61
+    protected function getSkip(): bool | string
62 62
     {
63 63
         return $this->skip;
64 64
     }
Please login to merge, or discard this patch.