Completed
Push — master ( 27757a...2567d9 )
by Alessandro
02:31
created
src/Events/DeferredHttpEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Algatux\InfluxDbBundle\Services\Clients\Contracts;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/Events/DeferredUdpEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Algatux\InfluxDbBundle\Services\Clients\Contracts;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/Services/CollectionStorageInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Algatux\InfluxDbBundle\Services\Clients\Contracts;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/Services/PointsCollectionStorage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Algatux\InfluxDbBundle\Services;
4 4
 
5 5
 use Algatux\InfluxDbBundle\Model\PointsCollection;
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     private function checkStorageInitialization(string $getWriteMode, string $getPrecision)
48 48
     {
49
-        if (! isset($this->storage[$getWriteMode])) {
49
+        if (!isset($this->storage[$getWriteMode])) {
50 50
             $this->storage[$getWriteMode] = null;
51 51
         }
52 52
 
Please login to merge, or discard this patch.
src/Services/Clients/InfluxDbClientFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      */
56 56
     public function buildUdpClient(): Database
57 57
     {
58
-        $client = new Client($this->host,$this->udpPort, $this->username, $this->password);
58
+        $client = new Client($this->host, $this->udpPort, $this->username, $this->password);
59 59
         $client->setDriver(new UDP($this->host, $this->udpPort));
60 60
 
61 61
         return $client->selectDB($this->database);
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function buildHttpClient(): Database
68 68
     {
69
-        $client = new Client($this->host,$this->httpPort, $this->username, $this->password);
69
+        $client = new Client($this->host, $this->httpPort, $this->username, $this->password);
70 70
 
71 71
         return $client->selectDB($this->database);
72 72
     }
Please login to merge, or discard this patch.