Test Failed
Push — master ( 5d1429...25dee5 )
by Alexey
04:54
created
system/modules/Ecommerce/appControllers/EcommerceController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     public function submitReviewAction() {
14 14
         $result = new \Server\Result();
15 15
         if (!empty($_POST['review']['item_id']) && !empty($_POST['review']['name']) && !empty($_POST['review']['text'])) {
16
-            $item = Ecommerce\Item::get((int)$_POST['review']['item_id']);
16
+            $item = Ecommerce\Item::get((int) $_POST['review']['item_id']);
17 17
             if (!$item) {
18 18
                 $result->success = false;
19 19
                 $result->content = ['errorText' => 'Товар не найден'];
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
                 'item_id' => $item->id,
24 24
                 'user_id' => \Users\User::$cur->id,
25 25
                 'name' => htmlspecialchars($_POST['review']['name']),
26
-                'rating' => (int)$_POST['review']['rating'],
26
+                'rating' => (int) $_POST['review']['rating'],
27 27
                 'text' => htmlspecialchars($_POST['review']['text']),
28 28
                 'mail' => !empty($_POST['review']['email']) ? htmlspecialchars($_POST['review']['email']) : '',
29 29
                 'file_id' => !empty($_FILES['review']['tmp_name']['file']) ? App::$cur->files->upload([
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         $user = Users\User::$cur;
48 48
         if (!empty($_POST) && !empty($_POST['card_id'])) {
49 49
             $error = false;
50
-            $card = \Ecommerce\Card::get((int)$_POST['card_id']);
50
+            $card = \Ecommerce\Card::get((int) $_POST['card_id']);
51 51
             if (!$card) {
52 52
                 $error = true;
53 53
                 Msg::add('Такой карты не существует', 'danger');
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         //search
134 134
         if (!empty($_GET['search'])) {
135 135
             if (!empty($_GET['inCatalog'])) {
136
-                $category_id = (int)$_GET['inCatalog'];
136
+                $category_id = (int) $_GET['inCatalog'];
137 137
             }
138 138
             $search = $_GET['search'];
139 139
         } else {
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
     }
276 276
 
277 277
     public function viewAction($id = '', $quick = 0) {
278
-        $item = \Ecommerce\Item::get((int)$id);
278
+        $item = \Ecommerce\Item::get((int) $id);
279 279
         if (!$item) {
280 280
             Tools::redirect('/ecommerce/', 'Такой товар не найден');
281 281
         }
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
 
324 324
     public function toggleFavAction($itemId) {
325 325
         $result = new Server\Result();
326
-        $item = \Ecommerce\Item::get((int)$itemId);
326
+        $item = \Ecommerce\Item::get((int) $itemId);
327 327
         if (!$item) {
328 328
             $result->success = false;
329 329
             $result->content = 'Товар не найден';
Please login to merge, or discard this patch.