Skip to content

Commit 17b18e8

Browse files
committed
Laraflux
1 parent 97b8a59 commit 17b18e8

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
},
2626
"minimum-stability": "dev",
2727
"extra": {
28-
"laravel": {
29-
"providers": [
30-
"PowerDataHub\\Laraflux\\ServiceProvider"
31-
]
32-
}
28+
"laravel": {
29+
"providers": [
30+
"PowerDataHub\\Laraflux\\Providers\\ServiceProvider"
31+
]
32+
}
3333
}
3434
}

src/Facades/InfluxDB.php renamed to src/Facades/Laraflux.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Illuminate\Support\Facades\Facade as LaravelFacade;
66
use InfluxDB\Database;
77

8-
class InfluxDB extends LaravelFacade
8+
class Laraflux extends LaravelFacade
99
{
1010
/**
1111
* Get the registered name of the component.

src/Providers/ServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function boot()
3434
*/
3535
public function register()
3636
{
37-
$this->app->singleton(InfluxDB::class, function($app) {
37+
$this->app->singleton(InfluxDB::class, function ($app) {
3838
$client = new InfluxClient(
3939
config('influxdb.host'),
4040
config('influxdb.port'),

0 commit comments

Comments
 (0)