Passed
Push — master ( eb9231...cf06a9 )
by Yash
02:02
created
src/DbBackupServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function register()
26 26
     {
27
-        $this->publishes([__DIR__.'/../config/dbbackup.php' => config_path('dbbackup.php')]);
27
+        $this->publishes([ __DIR__.'/../config/dbbackup.php' => config_path('dbbackup.php') ]);
28 28
         $this->app->bind('command.run:dbbackup', DbBackupCommand::class);
29 29
         $this->commands([
30 30
             'command.run:dbbackup',
Please login to merge, or discard this patch.
config/dbbackup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,6 +56,6 @@
 block discarded – undo
56 56
         // filesystem configurations will be copied from laravel filesystem configuration
57 57
         'default' => 'filesystem',
58 58
 
59
-        'disk' => [],
59
+        'disk' => [ ],
60 60
     ],
61 61
 ];
Please login to merge, or discard this patch.