Test Failed
Push — master ( dc3eb8...ff59dd )
by Alexey
04:20
created
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/objects/DeliveryProvider/PickPoint.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     static $name = 'PickPoint - курьерская служба';
17 17
 
18 18
     /**
19
-     * @param \Ecommerce\Cart $cart
19
+     * @param string $URL
20 20
      * @return \Money\Sums
21 21
      */
22 22
     static function curl_get_file_contents($URL, $data) {
Please login to merge, or discard this patch.
system/modules/Users/Users.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -258,6 +258,10 @@
 block discarded – undo
258 258
         return $user;
259 259
     }
260 260
 
261
+    /**
262
+     * @param string $err
263
+     * @param boolean $msg
264
+     */
261 265
     private function msgOrErr($err, $msg) {
262 266
         if ($msg) {
263 267
             Msg::add($err, 'danger');
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
@@ -338,6 +338,9 @@
 block discarded – undo
338 338
         return false;
339 339
     }
340 340
 
341
+    /**
342
+     * @return \Money\Sums
343
+     */
341 344
     public function deliverySum() {
342 345
         $sum = new \Money\Sums([0 => 0]);
343 346
         if ($this->delivery && $this->needDelivery()) {
Please login to merge, or discard this patch.
system/Inji/Model.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -168,7 +168,6 @@  discard block
 block discarded – undo
168 168
      * @param Model $item
169 169
      * @param string $colName
170 170
      * @param boolean $manageHref
171
-     * @param array $params
172 171
      * @return string
173 172
      */
174 173
     public static function resloveTypeValue($item, $colName, $manageHref = false, $colInfo = []) {
@@ -794,7 +793,7 @@  discard block
 block discarded – undo
794 793
     /**
795 794
      * return relations list
796 795
      *
797
-     * @return array
796
+     * @return string
798 797
      */
799 798
     public static function relations() {
800 799
         return [];
Please login to merge, or discard this patch.