Completed
Push — master ( 1799ee...d0ca1f )
by Alessandro
05:38 queued 02:41
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.
src/DependencyInjection/InfluxDbExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $container->setParameter('influx_db.username', $config['username']);
30 30
         $container->setParameter('influx_db.password', $config['password']);
31 31
 
32
-        $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
32
+        $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
33 33
         $loader->load('services.xml');
34 34
 
35 35
         if ($config['use_events'] === true) {
Please login to merge, or discard this patch.