Passed
Branch master (58a39e)
by Austin
04:18
created
src/helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * @author      Austin Heap <[email protected]>
6 6
  * @version     v0.1.2
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 if (!function_exists('influxdb')) {
11 11
     /**
Please login to merge, or discard this patch.
src/InfluxDbServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      */
54 54
     public function register(): void
55 55
     {
56
-        $this->app->singleton('InfluxDb', function ($app) {
56
+        $this->app->singleton('InfluxDb', function($app) {
57 57
             try {
58 58
                 $timeout   = is_int(config('influxdb.timeout', null)) ? config('influxdb.timeout') : 5;
59 59
                 $verifySsl = is_bool(config('influxdb.verify_ssl', null)) ? config('influxdb.verify_ssl') : true;
Please login to merge, or discard this patch.
src/Logs/Formatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * @author      Austin Heap <[email protected]>
6 6
  * @version     v0.1.2
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace AustinHeap\Database\InfluxDb\Logs;
11 11
 
Please login to merge, or discard this patch.
src/Jobs/Job.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * @author      Austin Heap <[email protected]>
6 6
  * @version     v0.1.2
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace AustinHeap\Database\InfluxDb\Jobs;
11 11
 
Please login to merge, or discard this patch.