Completed
Push — master ( b59ed4...7a2602 )
by Nicolas
15:18 queued 13:11
created
src/Models/Video.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/LaravelVideoableServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.