Completed
Pull Request — master (#10)
by Nicolas
05:45
created
src/LaravelVideoableServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@  discard block
 block discarded – undo
15 15
 
16 16
     public function boot()
17 17
     {
18
-        $this->loadViewsFrom(__DIR__ . '/../resources/views', 'laravel-videoable');
18
+        $this->loadViewsFrom(__DIR__.'/../resources/views', 'laravel-videoable');
19 19
 
20 20
         if ($this->app->runningInConsole()) {
21
-            if (! class_exists('CreateVideosTable')) {
21
+            if (!class_exists('CreateVideosTable')) {
22 22
                 $timestamp = date('Y_m_d_His', time());
23 23
                 $this->publishes([
24
-                    __DIR__ . '/../database/migrations/create_video_table.php.stub' => $this->app->databasePath() . '/migrations/' . $timestamp . '_create_videos_table.php',
24
+                    __DIR__.'/../database/migrations/create_video_table.php.stub' => $this->app->databasePath().'/migrations/'.$timestamp.'_create_videos_table.php',
25 25
                 ], 'migrations');
26 26
             }
27 27
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
             ], 'config');
31 31
 
32 32
             $this->publishes([
33
-                __DIR__ . '/../resources/views' => base_path('resources/views/vendor/laravel-videoable'),
33
+                __DIR__.'/../resources/views' => base_path('resources/views/vendor/laravel-videoable'),
34 34
             ], 'views');
35 35
         }
36 36
     }
Please login to merge, or discard this patch.