Completed
Pull Request — master (#5)
by Alessandro
04:33
created
src/DependencyInjection/MongoDbBundleExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     private function defineConnections(ContainerBuilder $container, array $connections)
65 65
     {
66
-        foreach ($connections as $name => $conf){
66
+        foreach ($connections as $name => $conf) {
67 67
             $connectionDefinition = new Definition(
68 68
                 Database::class,
69 69
                 [
@@ -74,6 +74,6 @@  discard block
 block discarded – undo
74 74
             $connectionDefinition->setFactory([new Reference('mongo.connection_factory'), 'createConnection']);
75 75
             $container->setDefinition('mongo.connection.'.$name, $connectionDefinition);
76 76
         }
77
-        $container->setAlias('mongo.connection', 'mongo.connection.' . array_keys($connections)[0]);
77
+        $container->setAlias('mongo.connection', 'mongo.connection.'.array_keys($connections)[0]);
78 78
     }
79 79
 }
Please login to merge, or discard this patch.