@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | /** @var Definition $definition */ |
86 | 86 | foreach (self::$container->getDefinitions() as $id => $definition) { |
87 | - if (! $definition->getClass()) { |
|
87 | + if (!$definition->getClass()) { |
|
88 | 88 | continue; |
89 | 89 | } |
90 | 90 | |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | |
122 | 122 | $pluginConfiguration = require $configurationPath; |
123 | 123 | |
124 | - if (! \is_array($pluginConfiguration)) { |
|
124 | + if (!\is_array($pluginConfiguration)) { |
|
125 | 125 | throw InvalidPlugin::configurationMustBeArray($pluginClass, $configurationPath); |
126 | 126 | } |
127 | 127 | |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | { |
159 | 159 | $routeFile = File::path('src/routes.php'); |
160 | 160 | |
161 | - if (! file_exists($routeFile)) { |
|
161 | + if (!file_exists($routeFile)) { |
|
162 | 162 | return; |
163 | 163 | } |
164 | 164 |