Passed
Push — master ( 668ff3...1f2ae2 )
by Yash
03:26
created
src/DbBackupServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     {
27 27
         $this->app->make('Webelightdev\LaravelDbBackup\Controllers\DbBackupController');
28 28
         $this->loadViewsFrom(__DIR__.'/views', 'dbbackup');
29
-        $this->publishes([__DIR__.'/../config/dbbackup.php' => config_path('dbbackup.php')]);
29
+        $this->publishes([ __DIR__.'/../config/dbbackup.php' => config_path('dbbackup.php') ]);
30 30
 
31 31
         $this->app->bind('command.dbbackup:run', DbBackupCommand::class);
32 32
 
Please login to merge, or discard this patch.
src/BackupStorage/GoogleDrive/Storage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         
33 33
         $file = new Google_Service_Drive_DriveFile();
34 34
         $file->setName($backup_file);
35
-        $file->setParents([$this->folder_id]);
35
+        $file->setParents([ $this->folder_id ]);
36 36
 
37 37
         $data = file_get_contents($backup_file);
38 38
 
Please login to merge, or discard this patch.
src/BackupStorage/GoogleDrive/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         $client->setClientId($this->client_id);
31 31
         $client->setClientSecret($this->client_secret);
32 32
         $client->setRedirectUri($this->redirect_uri);
33
-        $client->setScopes([$this->scopes]);
33
+        $client->setScopes([ $this->scopes ]);
34 34
         $client->setAccessType($this->access_type);
35 35
 
36 36
         return $client;
Please login to merge, or discard this patch.