@@ -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) { |
@@ -137,7 +137,8 @@ |
||
137 | 137 | foreach ($files as $name => $file) { |
138 | 138 | try { |
139 | 139 | FileSystem::delete($name); |
140 | - } catch (IOException) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement |
|
140 | + } catch (IOException) { |
|
141 | +// phpcs:ignore Generic.CodeAnalysis.EmptyStatement |
|
141 | 142 | } |
142 | 143 | } |
143 | 144 | } |