Skip to content

Commit

Permalink
Laraflux
Browse files Browse the repository at this point in the history
  • Loading branch information
edbizarro committed May 20, 2018
1 parent 97b8a59 commit 17b18e8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"PowerDataHub\\Laraflux\\ServiceProvider"
]
}
"laravel": {
"providers": [
"PowerDataHub\\Laraflux\\Providers\\ServiceProvider"
]
}
}
}
2 changes: 1 addition & 1 deletion src/Facades/InfluxDB.php → src/Facades/Laraflux.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Support\Facades\Facade as LaravelFacade;
use InfluxDB\Database;

class InfluxDB extends LaravelFacade
class Laraflux extends LaravelFacade
{
/**
* Get the registered name of the component.
Expand Down
2 changes: 1 addition & 1 deletion src/Providers/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function boot()
*/
public function register()
{
$this->app->singleton(InfluxDB::class, function($app) {
$this->app->singleton(InfluxDB::class, function ($app) {
$client = new InfluxClient(
config('influxdb.host'),
config('influxdb.port'),
Expand Down

0 comments on commit 17b18e8

Please sign in to comment.