Passed
Push — main ( 00e164...d31815 )
by Breno
01:52
created
src/Container.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -139,11 +139,11 @@  discard block
 block discarded – undo
139 139
     {
140 140
         $this->assertString($id);
141 141
         return
142
-            $this->resolved->has($id)           ||
143
-            $this->definitions->has($id)        ||
144
-            $this->definitions->hasTag($id)     ||
145
-            $this->providers->provides($id)     ||
146
-            $this->delegates->has($id)          ||
142
+            $this->resolved->has($id) ||
143
+            $this->definitions->has($id) ||
144
+            $this->definitions->hasTag($id) ||
145
+            $this->providers->provides($id) ||
146
+            $this->delegates->has($id) ||
147 147
             $this->shouldAutowireResolve($id);
148 148
     }
149 149
 
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
         }
156 156
 
157 157
         return
158
-            $this->circularDependencyDetection->execute($id, function () use ($id) {
158
+            $this->circularDependencyDetection->execute($id, function() use ($id) {
159 159
                 return $this->resolve($id);
160 160
             });
161 161
     }
Please login to merge, or discard this patch.

 

OSZAR »