Completed
Push — master ( 5d7e0f...d5e6f7 )
by
unknown
02:39
created
src/Container.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -413,7 +413,7 @@
 block discarded – undo
413 413
      */
414 414
     protected function turnIntoResolvableClosure($abstract, $concrete)
415 415
     {
416
-        return function (Container $container, $parameters = []) use ($abstract, $concrete) {
416
+        return function(Container $container, $parameters = []) use ($abstract, $concrete) {
417 417
             return ($abstract == $concrete ? $container->resolve($abstract)
418 418
                 : $container->resolve($concrete, $parameters));
419 419
         };
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 namespace DependencyInjection;
8 8
 
9 9
 use Psr\Container\ContainerInterface;
10
-use DependencyInjection\Exception\ContainerException;
11 10
 use DependencyInjection\Exception\NotFoundException;
12 11
 
13 12
 class Container implements \ArrayAccess, ContainerInterface
Please login to merge, or discard this patch.