@@ -27,7 +27,7 @@ discard block |
||
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 |
||
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 |
||
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 | } |