Test Setup Failed
Push — master ( c149f5...5c8c66 )
by Brent
02:02
created
src/Stitcher/App.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.