Test Failed
Push — master ( d7feff...21b422 )
by Alexey
15:33 queued 11:21
created
system/modules/Ecommerce/models/Item.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -364,7 +364,7 @@
 block discarded – undo
364 364
     public function inFav() {
365 365
         if (\Users\User::$cur->id) {
366 366
             $fav = \Ecommerce\Favorite::get([['user_id', \Users\User::$cur->id], ['item_id', $this->id]]);
367
-            return (bool)$fav;
367
+            return (bool) $fav;
368 368
         } else {
369 369
             $favs = !empty($_COOKIE['ecommerce_favitems']) ? json_decode($_COOKIE['ecommerce_favitems'], true) : [];
370 370
             return in_array($this->id, $favs);
Please login to merge, or discard this patch.
system/modules/Money/appControllers/content/pay.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                 </tr>
46 46
                 <?php
47 47
             }
48
-            if($linlcount===1){
48
+            if ($linlcount === 1) {
49 49
                 Tools::redirect($lastlink);
50 50
             }
51 51
             ?>
Please login to merge, or discard this patch.
system/modules/Ui/objects/ActiveForm/Input/Select.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         $inputOptions = [
22 22
             'value' => $this->value(),
23 23
             'disabled' => $this->readOnly(),
24
-            'values' => \Ui\ActiveForm::getOptionsList($this->colParams, $this->activeFormParams, !empty($this->modelName)?$this->modelName:$this->activeForm->modelName, $inputName)
24
+            'values' => \Ui\ActiveForm::getOptionsList($this->colParams, $this->activeFormParams, !empty($this->modelName) ? $this->modelName : $this->activeForm->modelName, $inputName)
25 25
         ];
26 26
         $modelName = '';
27 27
         switch ($inputParams['source']) {
Please login to merge, or discard this patch.
system/Inji/Model.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -967,12 +967,12 @@  discard block
 block discarded – undo
967 967
         static::$needJoin = [];
968 968
 
969 969
         if (!empty($options['limit'])) {
970
-            $limit = (int)$options['limit'];
970
+            $limit = (int) $options['limit'];
971 971
         } else {
972 972
             $limit = 0;
973 973
         }
974 974
         if (!empty($options['start'])) {
975
-            $start = (int)$options['start'];
975
+            $start = (int) $options['start'];
976 976
         } else {
977 977
             $start = 0;
978 978
         }
@@ -1261,12 +1261,12 @@  discard block
 block discarded – undo
1261 1261
             $query->order($options['order']);
1262 1262
         }
1263 1263
         if (!empty($options['limit'])) {
1264
-            $limit = (int)$options['limit'];
1264
+            $limit = (int) $options['limit'];
1265 1265
         } else {
1266 1266
             $limit = 0;
1267 1267
         }
1268 1268
         if (!empty($options['start'])) {
1269
-            $start = (int)$options['start'];
1269
+            $start = (int) $options['start'];
1270 1270
         } else {
1271 1271
             $start = 0;
1272 1272
         }
@@ -1991,13 +1991,13 @@  discard block
 block discarded – undo
1991 1991
         if (!empty($className::$cols[$shortName])) {
1992 1992
             switch ($className::$cols[$shortName]['type']) {
1993 1993
                 case 'decimal':
1994
-                    $value = (float)$value;
1994
+                    $value = (float) $value;
1995 1995
                     break;
1996 1996
                 case 'number':
1997
-                    $value = (int)$value;
1997
+                    $value = (int) $value;
1998 1998
                     break;
1999 1999
                 case 'bool':
2000
-                    $value = (bool)$value;
2000
+                    $value = (bool) $value;
2001 2001
                     break;
2002 2002
             }
2003 2003
         }
Please login to merge, or discard this patch.
system/modules/Money/models/Wallet.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
                             'label' => 'Комментарий',
67 67
                         ],
68 68
                     ]
69
-                ],],
69
+                ], ],
70 70
         ]
71 71
     ];
72 72
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     }
86 86
 
87 87
     public function diff($amount, $comment = '') {
88
-        $amount = (float)$amount;
88
+        $amount = (float) $amount;
89 89
         $query = \App::$cur->db->newQuery();
90 90
         $string = 'UPDATE ' . \App::$cur->db->table_prefix . $this->table() . ' SET `' . $this->colPrefix() . 'amount`=`' . $this->colPrefix() . 'amount`+' . $amount . ' where `' . $this->index() . '` = ' . $this->id;
91 91
         $query->query($string);
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     public function showAmount() {
106 106
         switch ($this->currency->round_type) {
107 107
             case 'floor':
108
-                $dif = (float)('1' . str_repeat('0', $this->currency->round_precision));
108
+                $dif = (float) ('1' . str_repeat('0', $this->currency->round_precision));
109 109
                 return floor($this->amount * $dif) / $dif;
110 110
             default:
111 111
                 return $this->amount;
Please login to merge, or discard this patch.
system/modules/Modules/appAdminControllers/content/install.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
       $appModules = array_slice(scandir(App::$primary->path . '/modules'), 2);
8 8
   }
9 9
   else {
10
-      $appModules=[];
10
+      $appModules = [];
11 11
   }
12 12
   $systemModules = array_merge(array_slice(scandir(INJI_SYSTEM_DIR . '/modules'), 2), $appModules);
13 13
   foreach ($systemModules as $module) {
Please login to merge, or discard this patch.
system/modules/UserForms/widgets/userForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
     echo 'form not found';
5 5
     return;
6 6
 }
7
-$userForm = \UserForms\Form::get((int)$formId);
7
+$userForm = \UserForms\Form::get((int) $formId);
8 8
 if (!$userForm) {
9 9
     echo 'form not found';
10 10
     return;
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     echo "<p class = 'text-center'>{$userForm->description}</p>";
19 19
 }
20 20
 foreach ($userForm->inputs(['order' => ['weight']]) as $input) {
21
-    $form->input($input->type, 'UserForms[' . (int)$formId . '][input' . $input->id . ']', $input->label, ['required' => $input->required]);
21
+    $form->input($input->type, 'UserForms[' . (int) $formId . '][input' . $input->id . ']', $input->label, ['required' => $input->required]);
22 22
 }
23 23
 ?>
24 24
 <button class='btn btn-success btn-block'><?= urldecode($btnText); ?></button>
Please login to merge, or discard this patch.
system/modules/Exchange1c/objects/Parser/Item/Offer/Warehouse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     function parseWarehouse($warehouseCount) {
27 27
         $count = $warehouseCount['@attributes']['КоличествоНаСкладе'];
28
-        $objectId = \App::$cur->migrations->findObject((string)$warehouseCount['@attributes']['ИдСклада'], 'Ecommerce\Warehouse');
28
+        $objectId = \App::$cur->migrations->findObject((string) $warehouseCount['@attributes']['ИдСклада'], 'Ecommerce\Warehouse');
29 29
         if ($objectId) {
30 30
             $modelName = get_class($this->model);
31 31
             $warehouse = \Ecommerce\Item\Offer\Warehouse::get([[$modelName::index(), $this->model->pk()], [\Ecommerce\Warehouse::index(), $objectId->object_id]]);
Please login to merge, or discard this patch.
system/modules/Migrations/objects/Walker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         //walk know pathes
28 28
         foreach ($this->map->paths(['where' => ['path', $this->curPath]]) as $path) {
29 29
             if (defined('mdebug')) {
30
-                echo $path->item ;
30
+                echo $path->item;
31 31
             }
32 32
             if (isset($this->data[$path->item])) {
33 33
                 if ($path->type == 'container') {
Please login to merge, or discard this patch.