Passed
Push — master ( e0fba9...2e8699 )
by Jacobo
02:58
created
src/Providers/OpenViduServiceProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.