Completed
Push — master ( f595a5...48de47 )
by John
03:18
created
src/ManagerRegistry/ArrayManagerRegistry.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,12 +33,12 @@
 block discarded – undo
33 33
         $defaultManager
34 34
     ) {
35 35
         $i = 0;
36
-        foreach($connections as $name => $connection) {
36
+        foreach ($connections as $name => $connection) {
37 37
             $this->container[$i] = $connection;
38 38
             $connections[$name] = $i;
39 39
             $i++;
40 40
         }
41
-        foreach($managers as $name => $manager) {
41
+        foreach ($managers as $name => $manager) {
42 42
             $this->container[$i] = $manager;
43 43
             $managers[$name] = $i;
44 44
             $i++;
Please login to merge, or discard this patch.
src/Endpoint/ManagerRegistryCachingEndpointFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function __construct(ManagerRegistry $managerRegistry, CacheItemPoolInterface $cachePool, LoggerInterface $logger)
28 28
     {
29 29
         $this->managerRegistry = $managerRegistry;
30
-        parent::__construct($cachePool,$logger);
30
+        parent::__construct($cachePool, $logger);
31 31
     }
32 32
 
33 33
     /**
Please login to merge, or discard this patch.