@@ -5,7 +5,7 @@ |
||
| 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 | /** |
@@ -53,7 +53,7 @@ |
||
| 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; |
@@ -5,7 +5,7 @@ |
||
| 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 | |
@@ -5,7 +5,7 @@ |
||
| 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 | |