@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | public function register() |
| 22 | 22 | { |
| 23 | - $this->app->singleton(OpenVidu::class, function () { |
|
| 23 | + $this->app->singleton(OpenVidu::class, function() { |
|
| 24 | 24 | return new OpenVidu(/** @scrutinizer ignore-call */ config('services.openvidu')); |
| 25 | 25 | }); |
| 26 | 26 | |
@@ -35,8 +35,8 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | private function registerRoutes() |
| 37 | 37 | { |
| 38 | - Route::group($this->routeConfiguration(), function () { |
|
| 39 | - $this->loadRoutesFrom(__DIR__.'/../Http/routes.php'); |
|
| 38 | + Route::group($this->routeConfiguration(), function() { |
|
| 39 | + $this->loadRoutesFrom(__DIR__ . '/../Http/routes.php'); |
|
| 40 | 40 | }); |
| 41 | 41 | } |
| 42 | 42 | |
@@ -62,14 +62,14 @@ discard block |
||
| 62 | 62 | public function boot() |
| 63 | 63 | { |
| 64 | 64 | if ($this->app->runningInConsole()) { |
| 65 | - $this->loadMigrationsFrom(__DIR__.'/../../database/migrations'); |
|
| 65 | + $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations'); |
|
| 66 | 66 | |
| 67 | 67 | $this->publishes([ |
| 68 | - __DIR__.'/../../database/migrations' => /** @scrutinizer ignore-call */ database_path('migrations'), |
|
| 68 | + __DIR__ . '/../../database/migrations' => /** @scrutinizer ignore-call */ database_path('migrations'), |
|
| 69 | 69 | ], 'openvidu-migrations'); |
| 70 | 70 | |
| 71 | 71 | } |
| 72 | - Cache::extend('openvidu', function () { |
|
| 72 | + Cache::extend('openvidu', function() { |
|
| 73 | 73 | return Cache::repository(new SessionStore(DB::connection(), /** @scrutinizer ignore-call */ config('cache.stores.openvidu.table'))); |
| 74 | 74 | }); |
| 75 | 75 | } |