Completed
Push — master ( 3a1457...f5cd63 )
by Benjamin
01:57
created
src/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace Bnf\Di;
4 4
 
5 5
 use Psr\Container\ContainerInterface;
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
             foreach ($extensions as $id => $extension) {
36 36
                 if (isset($this->factories[$id])) {
37 37
                     $innerFactory = $this->factories[$id];
38
-                    $this->factories[$id] = function (ContainerInterface $container) use ($extension, $innerFactory) {
38
+                    $this->factories[$id] = function(ContainerInterface $container) use ($extension, $innerFactory) {
39 39
                         $previous = ($innerFactory)($container);
40 40
                         return ($extension)($container, $previous);
41 41
                     };
Please login to merge, or discard this patch.