@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | __DIR__.'/../config/responsive-gallery.php' => base_path('config/responsive-gallery.php'), |
| 22 | 22 | ], 'config'); |
| 23 | 23 | |
| 24 | - if (! class_exists('CreateGalleryImagesTable')) { |
|
| 24 | + if (!class_exists('CreateGalleryImagesTable')) { |
|
| 25 | 25 | $this->publishes([ |
| 26 | 26 | __DIR__.'/../database/migrations/create_gallery_images_table.php.stub' => database_path('migrations/'.date('Y_m_d_His', time()).'_create_gallery_images_table.php'), |
| 27 | 27 | ], 'migrations'); |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | ]); |
| 34 | 34 | |
| 35 | 35 | |
| 36 | - Route::group(['middleware' => 'web'], function () { |
|
| 36 | + Route::group(['middleware' => 'web'], function() { |
|
| 37 | 37 | //Route::get('responsive-gallery', ResponsiveGalleryController::class); |
| 38 | 38 | Route::resource('responsive-gallery', ResponsiveGalleryController::class); |
| 39 | 39 | }); |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | { |
| 44 | 44 | $this->mergeConfigFrom(__DIR__.'/../config/responsive-gallery.php', 'responsive-gallery'); |
| 45 | 45 | |
| 46 | - $this->app->bind('gallery-index', function () { |
|
| 46 | + $this->app->bind('gallery-index', function() { |
|
| 47 | 47 | return new ResponsiveGalleryFactory(); |
| 48 | 48 | }); |
| 49 | 49 | } |