Passed
Push — master ( 668ff3...1f2ae2 )
by Yash
03:26
created
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.