Test Failed
Branch v5 (12d602)
by Alexey
04:51
created
system/modules/Dashboard/snippets/adminDashboardWidget/siteConfig.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 return [
3
-    'accessCheck' => function() {
3
+    'accessCheck' => function () {
4 4
         if (!class_exists('Users\User')) {
5 5
             return false;
6 6
         }
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         }
35 35
         return true;
36 36
     },
37
-            'widget' => function() {
37
+            'widget' => function () {
38 38
         ?>
39 39
         <div class="panel panel-default">
40 40
             <div class="panel-heading">Общие настройки сайта</div>
Please login to merge, or discard this patch.
system/modules/Money/install_script.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return function($step = NULL, $params = []) {
3
+return function ($step = NULL, $params = []) {
4 4
 
5 5
     $currencies = [
6 6
         [
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return function($step = NULL, $params = []) {
3
+return function($step = null, $params = []) {
4 4
 
5 5
     $currencies = [
6 6
         [
Please login to merge, or discard this patch.
system/modules/Money/models/Transfer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
     public static function validators() {
113 113
         return [
114
-            'userSearch' => function($activeForm, $request) {
114
+            'userSearch' => function ($activeForm, $request) {
115 115
                 if (empty($request['userSearch'])) {
116 116
                     throw new \Exception('Не указан получатель');
117 117
                 }
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                 }
128 128
                 return true;
129 129
             },
130
-            'amount' => function($activeForm, $request) {
130
+            'amount' => function ($activeForm, $request) {
131 131
                 if (empty($request['amount'])) {
132 132
                     throw new \Exception('Не указана сумма');
133 133
                 }
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
                 }
155 155
                 return true;
156 156
             },
157
-            'commentClean' => function($activeForm, &$request) {
157
+            'commentClean' => function ($activeForm, &$request) {
158 158
                 $request['comment'] = trim(htmlspecialchars(urldecode($request['comment'])));
159 159
             }
160 160
         ];
Please login to merge, or discard this patch.
system/modules/Money/snippets/rewardType/currency.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,18 +46,18 @@
 block discarded – undo
46 46
                     switch ($reward->round_type) {
47 47
                         case 'round':
48 48
                             $finalSum = round($finalSum, $reward->round_precision);
49
-                            $amount = $finalSum / 100 * (float)$level->params['amount']->value;
49
+                            $amount = $finalSum / 100 * (float) $level->params['amount']->value;
50 50
                             break;
51 51
                         case 'floor':
52 52
                             $finalSum = floor($finalSum);
53
-                            $amount = $finalSum / 100 * (float)$level->params['amount']->value;
53
+                            $amount = $finalSum / 100 * (float) $level->params['amount']->value;
54 54
                             break;
55 55
                         default:
56
-                            $amount = $finalSum / 100 * (float)$level->params['amount']->value;
56
+                            $amount = $finalSum / 100 * (float) $level->params['amount']->value;
57 57
                     }
58 58
                     break;
59 59
                 case 'amount':
60
-                    $amount = (float)$level->params['amount']->value;
60
+                    $amount = (float) $level->params['amount']->value;
61 61
             }
62 62
             if (!$amount) {
63 63
                 return 0;
Please login to merge, or discard this patch.
Braces   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -16,34 +16,34 @@  discard block
 block discarded – undo
16 16
             'type' => 'decimal'
17 17
         ]
18 18
     ],
19
-    'viewer' => function ($level) {
19
+    'viewer' => function ($level) {
20 20
         $levelTypes = [
21 21
             'procent' => 'Процент',
22 22
             'amount' => 'Сумма',
23 23
         ];
24 24
         return $levelTypes[$level->params['type']->value] . ': ' . $level->params['amount']->value . ' ' . ($level->params['type']->value == 'procent' ? '%' : ($level->params['currency_id']->value ? \Money\Currency::get($level->params['currency_id']->value)->acronym() : ''));
25 25
     },
26
-    'rewarder' => function ($reward, $sums, $user, $rootUser, $level, $rewardGet) {
26
+    'rewarder' => function ($reward, $sums, $user, $rootUser, $level, $rewardGet) {
27 27
         $wallets = \App::$cur->money->getUserWallets($user->id);
28 28
         $amount = 0;
29
-        if (!empty($wallets[$level->params['currency_id']->value])) {
30
-            switch ($level->params['type']->value) {
29
+        if (!empty($wallets[$level->params['currency_id']->value])) {
30
+            switch ($level->params['type']->value) {
31 31
                 case 'procent':
32 32
                     $finalSum = 0;
33
-                    foreach ($sums as $currency_id => $sum) {
34
-                        if ($currency_id != $level->params['currency_id']->value) {
33
+                    foreach ($sums as $currency_id => $sum) {
34
+                        if ($currency_id != $level->params['currency_id']->value) {
35 35
                             $rate = \Money\Currency\ExchangeRate::get([
36 36
                                 ['currency_id', $currency_id],
37 37
                                 ['target_currency_id', $level->params['currency_id']->value],
38 38
                             ]);
39
-                            if ($rate) {
39
+                            if ($rate) {
40 40
                                 $finalSum += $sum * $rate->rate;
41 41
                             }
42
-                        } else {
42
+                        } else {
43 43
                             $finalSum += $sum;
44 44
                         }
45 45
                     }
46
-                    switch ($reward->round_type) {
46
+                    switch ($reward->round_type) {
47 47
                         case 'round':
48 48
                             $finalSum = round($finalSum, $reward->round_precision);
49 49
                             $amount = $finalSum / 100 * (float)$level->params['amount']->value;
@@ -59,33 +59,33 @@  discard block
 block discarded – undo
59 59
                 case 'amount':
60 60
                     $amount = (float)$level->params['amount']->value;
61 61
             }
62
-            if (!$amount) {
62
+            if (!$amount) {
63 63
                 return 0;
64 64
             }
65 65
 
66 66
             $text = 'Вознаграждение по программе "' . $reward->name . '"';
67
-            if ($rootUser->id != $user->id) {
67
+            if ($rootUser->id != $user->id) {
68 68
                 $text .= ' от ' . $rootUser->name();
69 69
             }
70 70
 
71
-            if (!$rewardGet && $reward->block) {
71
+            if (!$rewardGet && $reward->block) {
72 72
                 $block = new \Money\Wallet\Block();
73 73
                 $block->wallet_id = $wallets[$level->params['currency_id']->value]->id;
74 74
                 $block->amount = $amount;
75 75
                 $block->comment = $text;
76 76
                 $block->data = 'reward:' . $reward->id;
77 77
                 $dateGenerators = \App::$cur->money->getSnippets('expiredDateGenerator');
78
-                if ($reward->block_date_expired && !empty($dateGenerators[$reward->block_date_expired])) {
78
+                if ($reward->block_date_expired && !empty($dateGenerators[$reward->block_date_expired])) {
79 79
                     $date = $dateGenerators[$reward->block_date_expired]($reward, $user);
80
-                    if (!empty($date['date'])) {
80
+                    if (!empty($date['date'])) {
81 81
                         $block->date_expired = $date['date'];
82 82
                     }
83
-                    if (!empty($date['type'])) {
83
+                    if (!empty($date['type'])) {
84 84
                         $block->expired_type = $date['type'];
85 85
                     }
86 86
                 }
87 87
                 $block->save();
88
-            } else {
88
+            } else {
89 89
                 $wallets[$level->params['currency_id']->value]->diff($amount, $text);
90 90
             }
91 91
             \App::$cur->users->AddUserActivity($user->id, 4, $text . '<br />' . $amount . ' ' . $wallets[$level->params['currency_id']->value]->currency->acronym());
Please login to merge, or discard this patch.
system/modules/Money/snippets/userActivity/lastPurchase.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
     'checker' => function ($user) {
6 6
         $query = 'SELECT * FROM inji_ecommerce_cart iec WHERE iec.cart_cart_status_id >= 5 AND iec.cart_date_create >= NOW() - INTERVAL 90 DAY AND cart_user_id = ?';
7 7
         $result = \App::$cur->db->query(['query' => $query, 'params' => [$user->id]]);
8
-        return (bool)$result ? $result->fetch() : false;
8
+        return (bool) $result ? $result->fetch() : false;
9 9
     }];
10 10
         
11 11
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 return [
4 4
     'name' => 'Последняя покупка не позднее 90 дней',
5
-    'checker' => function ($user) {
5
+    'checker' => function ($user) {
6 6
         $query = 'SELECT * FROM inji_ecommerce_cart iec WHERE iec.cart_cart_status_id >= 5 AND iec.cart_date_create >= NOW() - INTERVAL 90 DAY AND cart_user_id = ?';
7 7
         $result = \App::$cur->db->query(['query' => $query, 'params' => [$user->id]]);
8 8
         return (bool)$result ? $result->fetch() : false;
Please login to merge, or discard this patch.
system/modules/Money/snippets/expiredDateGenerator/monthStart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return function($reward, $user) {
3
+return function ($reward, $user) {
4 4
     return [
5 5
         'date' => date('Y-m-d H:i:s', mktime(0, 0, 0, date('n') + 1, 1, date("Y"))),
6 6
         'type' => 'burn'
Please login to merge, or discard this patch.
system/modules/Money/snippets/expiredDateGenerator/dayStart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return function($reward, $user) {
3
+return function ($reward, $user) {
4 4
     return [
5 5
         'date' => date('Y-m-d H:i:s', mktime(0, 0, 0, date('n'), date("j") + 1, date("Y"))),
6 6
         'type' => 'burn'
Please login to merge, or discard this patch.
system/modules/Money/snippets/rewardTriggerHandler/ecommerceCartReward.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 return [
4 4
     'name' => 'Вознаграждение партнерам за закрытие корзины товаров в онлайн магазине',
5
-    'handler' => function($cart, $trigger) {
5
+    'handler' => function ($cart, $trigger) {
6 6
         $sums = [];
7 7
         $rewardItemExist = empty($trigger->params['item_type_id']);
8 8
 
Please login to merge, or discard this patch.
system/modules/Money/snippets/rewardTriggerHandler/usersReward.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 return [
4 4
     'name' => 'Вознаграждение пользователю за различные действия',
5
-    'handler' => function($user, $trigger) {
5
+    'handler' => function ($user, $trigger) {
6 6
         App::$cur->money->reward($trigger->reward_id, [], $user);
7 7
     }
8 8
         ];
Please login to merge, or discard this patch.