@@ -15,13 +15,13 @@ discard block |
||
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 |
||
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 | } |