@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | */ |
80 | 80 | private function buildClientConfiguration(array $conf): ClientConfiguration |
81 | 81 | { |
82 | - if (! $conf['uri']) { |
|
82 | + if (!$conf['uri']) { |
|
83 | 83 | $conf['uri'] = $this->buildConnectionUri($conf['hosts']); |
84 | 84 | } |
85 | 85 | |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | return 'mongodb://' . implode( |
114 | 114 | ',', |
115 | 115 | array_map( |
116 | - function (array $host) { |
|
116 | + function(array $host) { |
|
117 | 117 | return sprintf('%s:%d', $host['host'], $host['port']); |
118 | 118 | }, |
119 | 119 | $hosts |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | { |
151 | 151 | $clientKey = null !== $databaseName ? $name . '.' . $databaseName : $name; |
152 | 152 | |
153 | - if (! isset($this->clients[$clientKey])) { |
|
153 | + if (!isset($this->clients[$clientKey])) { |
|
154 | 154 | $conf = $this->configurations[$name]; |
155 | 155 | $options = array_merge( |
156 | 156 | [ |