Passed
Pull Request — master (#53)
by
unknown
14:44
created
src/LaravelBackupPanelServiceProvider.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,14 +40,14 @@
 block discarded – undo
40 40
             ]);
41 41
         }
42 42
 
43
-      if(config('laravel_backup_panel.routes') === true) {
44
-          Route::group([
43
+        if(config('laravel_backup_panel.routes') === true) {
44
+            Route::group([
45 45
                 'prefix' => config('laravel_backup_panel.path'),
46 46
                 'middleware' => ['web', Authenticate::class],
47 47
             ], function () {
48 48
                 $this->loadRoutesFrom(__DIR__.'/../routes/web.php');
49 49
             });
50
-      }
50
+        }
51 51
 
52 52
         $this->loadViewsFrom(__DIR__.'/../resources/views', 'laravel_backup_panel');
53 53
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             ]);
41 41
         }
42 42
 
43
-      if(config('laravel_backup_panel.routes') === true) {
43
+      if (config('laravel_backup_panel.routes') === true) {
44 44
           Route::group([
45 45
                 'prefix' => config('laravel_backup_panel.path'),
46 46
                 'middleware' => ['web', Authenticate::class],
Please login to merge, or discard this patch.