Completed
Push — master ( 0674f6...b507c7 )
by Davide
10:30 queued 05:45
created
src/LaravelCardsServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,12 +20,12 @@  discard block
 block discarded – undo
20 20
         $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
21 21
         $this->loadRoutesFrom(__DIR__.'/../routes/web.php');
22 22
 
23
-        if (! class_exists('CreateCardsTable')) {
23
+        if (!class_exists('CreateCardsTable')) {
24 24
             $this->publishes([
25 25
                 __DIR__.'/../database/migrations/create_cards_table.php.stub' => database_path('migrations/'.Carbon::now()->format('Y_m_d_Hmsu').'_create_cards_table.php'),
26 26
             ], 'migrations');
27 27
         }
28
-        if (! class_exists('CreateCardTranslationsTable')) {
28
+        if (!class_exists('CreateCardTranslationsTable')) {
29 29
             $this->publishes([
30 30
                 __DIR__.'/../database/migrations/create_card_translations_table.php.stub' => database_path('migrations/'.Carbon::now()->format('Y_m_d_Hmsu').'_create_card_translations_table.php'),
31 31
             ], 'migrations');
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'laravel-cards');
70 70
 
71 71
         // Register the main class to use with the facade
72
-        $this->app->singleton('laravel-cards', function () {
72
+        $this->app->singleton('laravel-cards', function() {
73 73
             return new LaravelCards;
74 74
         });
75 75
     }
Please login to merge, or discard this patch.