Completed
Push — master ( 7a2602...9f5e90 )
by Nicolas
03:35
created
src/LaravelVideoableServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@
 block discarded – undo
15 15
 
16 16
     public function boot()
17 17
     {
18
-        $this->loadViewsFrom(__DIR__ . '/../resources/views', 'videoable');
18
+        $this->loadViewsFrom(__DIR__.'/../resources/views', '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
 
Please login to merge, or discard this patch.