Test Failed
Push — master ( 89dfd0...61f61c )
by Alexey
11:02 queued 06:40
created
system/modules/Migrations/objects/Parser/Object/Param.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
         }
28 28
     }
29 29
 
30
+    /**
31
+     * @param \Model[] $params
32
+     */
30 33
     private function parseData(&$data, $params) {
31 34
         $objectParamValue = [
32 35
             'col' => '',
Please login to merge, or discard this patch.
system/modules/Ecommerce/Ecommerce.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -233,7 +233,7 @@
 block discarded – undo
233 233
      * Getting items with params
234 234
      *
235 235
      * @param array $params
236
-     * @return array
236
+     * @return Model[]
237 237
      */
238 238
     public function getItems($params = []) {
239 239
         $selectOptions = Ecommerce\OptionsParser::parse($params);
Please login to merge, or discard this patch.
system/modules/Ecommerce/models/Cart.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -336,6 +336,9 @@
 block discarded – undo
336 336
         return false;
337 337
     }
338 338
 
339
+    /**
340
+     * @return \Money\Sums
341
+     */
339 342
     public function deliverySum() {
340 343
         $sum = new \Money\Sums([]);
341 344
         if ($this->delivery && $this->needDelivery()) {
Please login to merge, or discard this patch.