@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * |
102 | 102 | * @internal |
103 | 103 | */ |
104 | - public function getSuiteName(string|object|null $class = null): string |
|
104 | + public function getSuiteName(string | object | null $class = null): string |
|
105 | 105 | { |
106 | 106 | $class = $class ?? static::class; |
107 | 107 | $annotation = $this->annotationsReader->getAnnotation(static::ANNOTATION_TEST_SUITE, $class); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | /** |
115 | 115 | * Get name for a job |
116 | 116 | */ |
117 | - protected function getJobName(string|object $class, string $method): string |
|
117 | + protected function getJobName(string | object $class, string $method): string |
|
118 | 118 | { |
119 | 119 | $annotation = $this->annotationsReader->getAnnotation(static::ANNOTATION_TEST, $class, $method); |
120 | 120 | if ($annotation !== null) { |