@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Facile\MongoDbBundle\Services; |
| 6 | 6 | |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | public function createConnection(string $clientName, string $databaseName): Database |
| 36 | 36 | { |
| 37 | 37 | return $this->clientRegistry |
| 38 | - ->getClientForDatabase($clientName,$databaseName) |
|
| 38 | + ->getClientForDatabase($clientName, $databaseName) |
|
| 39 | 39 | ->selectDatabase($databaseName); |
| 40 | 40 | } |
| 41 | 41 | } |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | */ |
| 70 | 70 | private function defineConnections(array $connections) |
| 71 | 71 | { |
| 72 | - foreach ($connections as $name => $conf){ |
|
| 72 | + foreach ($connections as $name => $conf) { |
|
| 73 | 73 | $connectionDefinition = new Definition( |
| 74 | 74 | Database::class, |
| 75 | 75 | [ |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | $connectionDefinition->setFactory([new Reference('mongo.connection_factory'), 'createConnection']); |
| 81 | 81 | $this->containerBuilder->setDefinition('mongo.connection.'.$name, $connectionDefinition); |
| 82 | 82 | } |
| 83 | - $this->containerBuilder->setAlias('mongo.connection', 'mongo.connection.' . array_keys($connections)[0]); |
|
| 83 | + $this->containerBuilder->setAlias('mongo.connection', 'mongo.connection.'.array_keys($connections)[0]); |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | /** |