@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | /** @var callable Task */ |
30 | 30 | protected $callback; |
31 | 31 | protected array $params = []; |
32 | - protected bool|string $skip; |
|
32 | + protected bool | string $skip; |
|
33 | 33 | protected string $result = self::RESULT_PASSED; |
34 | 34 | protected string $output = ""; |
35 | 35 | /** @var callable[] */ |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | string $name, |
40 | 40 | callable $callback, |
41 | 41 | array $params = [], |
42 | - bool|string $skip = false, |
|
42 | + bool | string $skip = false, |
|
43 | 43 | array $onAfterExecute = [] |
44 | 44 | ) { |
45 | 45 | $this->name = $name; |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | return $this->params; |
65 | 65 | } |
66 | 66 | |
67 | - protected function getSkip(): bool|string |
|
67 | + protected function getSkip(): bool | string |
|
68 | 68 | { |
69 | 69 | return $this->skip; |
70 | 70 | } |