Passed
Push — master ( b5c678...1d5e9b )
by Austin
06:18
created
src/Jobs/WritePayload.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -89,11 +89,11 @@
 block discarded – undo
89 89
     public function handle()
90 90
     {
91 91
         InfluxDbServiceProvider::getInstance()
92
-                               ->writePayload(
93
-                                   $this->payload,
94
-                                   $this->precision,
95
-                                   $this->retentionPolicy
96
-                               );
92
+                                ->writePayload(
93
+                                    $this->payload,
94
+                                    $this->precision,
95
+                                    $this->retentionPolicy
96
+                                );
97 97
     }
98 98
 
99 99
     /**
Please login to merge, or discard this patch.
src/Jobs/WritePoints.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -89,11 +89,11 @@
 block discarded – undo
89 89
     public function handle()
90 90
     {
91 91
         InfluxDbServiceProvider::getInstance()
92
-                               ->writePoints(
93
-                                   $this->points,
94
-                                   $this->precision,
95
-                                   $this->retentionPolicy
96
-                               );
92
+                                ->writePoints(
93
+                                    $this->points,
94
+                                    $this->precision,
95
+                                    $this->retentionPolicy
96
+                                );
97 97
     }
98 98
 
99 99
     /**
Please login to merge, or discard this patch.
src/Jobs/Write.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,10 +51,10 @@
 block discarded – undo
51 51
     public function handle()
52 52
     {
53 53
         InfluxDbServiceProvider::getInstance()
54
-                               ->write(
55
-                                   $this->parameters,
56
-                                   $this->payload
57
-                               );
54
+                                ->write(
55
+                                    $this->parameters,
56
+                                    $this->payload
57
+                                );
58 58
     }
59 59
 
60 60
     /**
Please login to merge, or discard this patch.