Completed
Push — master ( 1497b3...5a6800 )
by Kamil
55:31 queued 01:09
created
tests/Controller/ProductReviewApiTest.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
             "email": "[email protected]"
129 129
           }
130 130
         }
131
-EOT;
131
+eot;
132 132
 
133 133
         $this->client->request('POST', $this->getReviewListUrl($product), [], [], static::$authorizedHeaderWithContentType, $data);
134 134
         $response = $this->client->getResponse();
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
             "rating": "1",
220 220
             "comment": "NEW_REVIEW_COMMENT"
221 221
         }
222
-EOT;
222
+eot;
223 223
         $this->client->request('PUT', $this->getReviewUrl($product, $productReview), [], [], static::$authorizedHeaderWithContentType, $data);
224 224
         $response = $this->client->getResponse();
225 225
 
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
         {
247 247
             "comment": "A_NEW_REVIEW_COMMENT"
248 248
         }
249
-EOT;
249
+eot;
250 250
 
251 251
         $this->client->request('PATCH', $this->getReviewUrl($product, $productReview), [], [], static::$authorizedHeaderWithContentType, $data);
252 252
         $response = $this->client->getResponse();
Please login to merge, or discard this patch.