Completed
Push — master ( 150d68...12ba57 )
by Giovanni
08:44
created
lib/GSheets/Operation/Update.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
         'valueInputOption' => 'RAW'
11 11
     ];
12 12
 
13
-    public function execute(Value $value, $range, $params = [])
13
+    public function execute(Value $value, $range, $params = [ ])
14 14
     {
15 15
         if (empty($params)) {
16 16
             $params = self::DEFAULT_PARAMS;
Please login to merge, or discard this patch.
lib/GSheets/Operation/Append.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
         'valueInputOption' => 'RAW'
11 11
     ];
12 12
 
13
-    public function execute(Value $value, $range, $params = [])
13
+    public function execute(Value $value, $range, $params = [ ])
14 14
     {
15 15
         if (empty($params)) {
16 16
             $params = self::DEFAULT_PARAMS;
Please login to merge, or discard this patch.
lib/GSheets/SpreadSheets.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      *
90 90
      * @return self
91 91
      */
92
-    public function updateRow(Value $value, $sheet, $row, $optParams = [])
92
+    public function updateRow(Value $value, $sheet, $row, $optParams = [ ])
93 93
     {
94 94
         $this->range = $this->declareRowRange($sheet, $row, $row);
95 95
 
Please login to merge, or discard this patch.
lib/GSheets/Operation/Delete.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $deleteDimensionRangeRequest = new \Google_Service_Sheets_Request();
38 38
         $deleteDimensionRangeRequest->setDeleteDimension($deleteDimensionRange);
39 39
         $request = new \Google_Service_Sheets_BatchUpdateSpreadsheetRequest();
40
-        $request->setRequests([$deleteDimensionRangeRequest]);
40
+        $request->setRequests([ $deleteDimensionRangeRequest ]);
41 41
 
42 42
         $service = $this->spreadsheets->getClient()->getGoogleServiceSheets();
43 43
 
Please login to merge, or discard this patch.