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