@@ -17,7 +17,7 @@ |
||
17 | 17 | |
18 | 18 | public function getEmbed() |
19 | 19 | { |
20 | - $sourceClass = '\Nwidart\LaravelVideoable\Sources\\' . ucfirst($this->source) . 'Presenter'; |
|
20 | + $sourceClass = '\Nwidart\LaravelVideoable\Sources\\'.ucfirst($this->source).'Presenter'; |
|
21 | 21 | |
22 | 22 | if (class_exists($sourceClass) === false) { |
23 | 23 | throw new VideoPresenterNotFound($sourceClass); |
@@ -12,11 +12,11 @@ |
||
12 | 12 | |
13 | 13 | public function boot() |
14 | 14 | { |
15 | - if (! class_exists('CreateVideosTable')) { |
|
15 | + if (!class_exists('CreateVideosTable')) { |
|
16 | 16 | // Publish the migration |
17 | 17 | $timestamp = date('Y_m_d_His', time()); |
18 | 18 | $this->publishes([ |
19 | - __DIR__ . '/../resources/migrations/create_video_table.php.stub' => $this->app->databasePath() . '/migrations/' . $timestamp . '_create_videos_table.php', |
|
19 | + __DIR__.'/../resources/migrations/create_video_table.php.stub' => $this->app->databasePath().'/migrations/'.$timestamp.'_create_videos_table.php', |
|
20 | 20 | ], 'migrations'); |
21 | 21 | } |
22 | 22 | } |