@@ -109,7 +109,7 @@  | 
                                                    ||
| 109 | 109 | /**  | 
                                                        
| 110 | 110 | * Get name for a job  | 
                                                        
| 111 | 111 | */  | 
                                                        
| 112 | - protected function getJobName(string|object $class, string $method): string  | 
                                                        |
| 112 | + protected function getJobName(string | object $class, string $method): string  | 
                                                        |
| 113 | 113 |      { | 
                                                        
| 114 | 114 | $annotation = $this->annotationsReader->getAnnotation(static::ANNOTATION_TEST, $class, $method);  | 
                                                        
| 115 | 115 |          if ($annotation !== null) { | 
                                                        
@@ -22,7 +22,7 @@ discard block  | 
                                                    ||
| 22 | 22 | protected $callback;  | 
                                                        
| 23 | 23 | public readonly array $params;  | 
                                                        
| 24 | 24 | // phpcs:ignore  | 
                                                        
| 25 | - public readonly bool|string $skip;  | 
                                                        |
| 25 | + public readonly bool | string $skip;  | 
                                                        |
| 26 | 26 | protected JobResult $result = JobResult::PASSED;  | 
                                                        
| 27 | 27 | protected string $output = "";  | 
                                                        
| 28 | 28 | /** @var callable[] */  | 
                                                        
@@ -32,7 +32,7 @@ discard block  | 
                                                    ||
| 32 | 32 | string $name,  | 
                                                        
| 33 | 33 | callable $callback,  | 
                                                        
| 34 | 34 | array $params = [],  | 
                                                        
| 35 | - bool|string $skip = false,  | 
                                                        |
| 35 | + bool | string $skip = false,  | 
                                                        |
| 36 | 36 | array $onAfterExecute = []  | 
                                                        
| 37 | 37 |      ) { | 
                                                        
| 38 | 38 | $this->name = $name;  |