@@ -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 | } |
@@ -10,7 +10,7 @@ |
||
10 | 10 | */ |
11 | 11 | interface IAnnotationsReaderEngine |
12 | 12 | { |
13 | - public function hasAnnotation(string $name, string|object $class, string $method = null): bool; |
|
13 | + public function hasAnnotation(string $name, string | object $class, string $method = null): bool; |
|
14 | 14 | |
15 | - public function getAnnotation(string $name, string|object $class, string $method = null): mixed; |
|
15 | + public function getAnnotation(string $name, string | object $class, string $method = null): mixed; |
|
16 | 16 | } |
@@ -11,12 +11,12 @@ |
||
11 | 11 | */ |
12 | 12 | final class DummyEngine implements IAnnotationsReaderEngine |
13 | 13 | { |
14 | - public function hasAnnotation(string $name, string|object $class, string $method = null): bool |
|
14 | + public function hasAnnotation(string $name, string | object $class, string $method = null): bool |
|
15 | 15 | { |
16 | 16 | return true; |
17 | 17 | } |
18 | 18 | |
19 | - public function getAnnotation(string $name, string|object $class, string $method = null): mixed |
|
19 | + public function getAnnotation(string $name, string | object $class, string $method = null): mixed |
|
20 | 20 | { |
21 | 21 | return "abc"; |
22 | 22 | } |