Completed
Push — master ( 7a819f...689625 )
by Mārtiņš
01:54
created
src/InktaleApiClient.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@
 block discarded – undo
232 232
     /**
233 233
      * @param int $contentLength
234 234
      * @param string $contentType
235
-     * @return array
235
+     * @return string[]
236 236
      */
237 237
     private function getCurlHeaders($contentLength, $contentType)
238 238
     {
Please login to merge, or discard this patch.
src/Structures/ProductItem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,8 +44,8 @@
 block discarded – undo
44 44
 
45 45
         $item->productType = $raw['productType'];
46 46
         $item->title = $raw['title'];
47
-        $item->price = (float)$raw['price'];
48
-        $item->sellingPrice = (float)$raw['sellingPrice'];
47
+        $item->price = (float) $raw['price'];
48
+        $item->sellingPrice = (float) $raw['sellingPrice'];
49 49
 
50 50
         return $item;
51 51
     }
Please login to merge, or discard this patch.