Completed
Push — master ( 3c1089...57bf4e )
by Alessandro
01:56
created
Services/Clients/InfluxDbClientFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function buildUdpClient(): Database
47 47
     {
48
-        $client = new Client($this->host,$this->udpPort);
48
+        $client = new Client($this->host, $this->udpPort);
49 49
         $client->setDriver(new UDP($this->host, $this->udpPort));
50 50
 
51 51
         return $client->selectDB($this->database);
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function buildHttpClient(): Database
58 58
     {
59
-        $client = new Client($this->host,$this->httpPort);
59
+        $client = new Client($this->host, $this->httpPort);
60 60
 
61 61
         return $client->selectDB($this->database);
62 62
     }
Please login to merge, or discard this patch.