@@ -1,6 +1,6 @@ |
||
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 |
@@ -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\Models; |
6 | 6 | |
@@ -92,8 +92,7 @@ discard block |
||
92 | 92 | public function getConnectionUri(): string |
93 | 93 | { |
94 | 94 | $credentials = $this->hasCredentials() ? |
95 | - sprintf('%s:%s@', $this->username, $this->password) : |
|
96 | - ''; |
|
95 | + sprintf('%s:%s@', $this->username, $this->password) : ''; |
|
97 | 96 | |
98 | 97 | $uri = sprintf( |
99 | 98 | 'mongodb://%s%s:%d/%s', |
@@ -1,6 +1,6 @@ |
||
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 |
@@ -1,6 +1,6 @@ |
||
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 |
@@ -1,6 +1,6 @@ |
||
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 |
@@ -1,6 +1,6 @@ |
||
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 |
@@ -63,7 +63,7 @@ discard block |
||
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 |
||
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 | } |
@@ -1,6 +1,6 @@ |
||
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 |