Completed
Push — master ( 26be15...c335c5 )
by John
03:22
created
src/Endpoint/ManagerRegistryCachingEndpointFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     public function __construct(ManagerRegistry $managerRegistry, CacheItemPoolInterface $cachePool, LoggerInterface $logger)
18 18
     {
19 19
         $this->managerRegistry = $managerRegistry;
20
-        parent::__construct($cachePool,$logger);
20
+        parent::__construct($cachePool, $logger);
21 21
     }
22 22
 
23 23
     protected function getCachingEndpoint(string $name, string $version): CachingEndpoint
Please login to merge, or discard this patch.
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.