Passed
Push — master ( 765c9f...e753d9 )
by Ilario
03:56
created
src/Services/ClientRegistry.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
                 [
Please login to merge, or discard this patch.