Test Failed
Push — master ( 13fa39...03fc86 )
by Alexey
05:15
created
system/modules/Migrations/install_script.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return function ($step = NULL, $params = []) {
3
+return function ($step = null, $params = []) {
4 4
     
5 5
 };
Please login to merge, or discard this patch.
system/modules/UserForms/install_script.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return function ($step = NULL, $params = []) {
3
+return function ($step = null, $params = []) {
4 4
     
5 5
 };
Please login to merge, or discard this patch.
system/modules/Money/widgets/cabinet/walletsWidget.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 <?php
3 3
 $blocked = App::$cur->money->getUserBlocks();
4 4
 $wallets = App::$cur->money->getUserWallets();
5
-foreach ($wallets as $wallet) {
5
+foreach ($wallets as $wallet) {
6 6
     ?>
7 7
     <b><?= $wallet->showAmount(); ?></b> <?= $wallet->currency->acronym(); ?><br/>
8 8
     <?php
Please login to merge, or discard this patch.
system/modules/Users/Users.php 1 patch
Braces   +13 added lines, -10 removed lines patch added patch discarded remove patch
@@ -229,17 +229,20 @@
 block discarded – undo
229 229
      * @return boolean|\User\User
230 230
      */
231 231
     public function get($idn, $ltype = 'id') {
232
-        if (!$idn)
233
-            return false;
232
+        if (!$idn) {
233
+                    return false;
234
+        }
234 235
 
235
-        if (is_numeric($idn) && $ltype != 'login')
236
-            $user = Users\User::get($idn, 'id');
237
-        elseif ($ltype == 'login')
238
-            $user = Users\User::get($idn, 'login');
239
-        else
240
-            $user = Users\User::get($idn, 'mail');
241
-        if (!$user)
242
-            return [];
236
+        if (is_numeric($idn) && $ltype != 'login') {
237
+                    $user = Users\User::get($idn, 'id');
238
+        } elseif ($ltype == 'login') {
239
+                    $user = Users\User::get($idn, 'login');
240
+        } else {
241
+                    $user = Users\User::get($idn, 'mail');
242
+        }
243
+        if (!$user) {
244
+                    return [];
245
+        }
243 246
 
244 247
         return $user;
245 248
     }
Please login to merge, or discard this patch.
system/modules/Sliders/install_script.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return function ($step = NULL, $params = []) {
3
+return function ($step = null, $params = []) {
4 4
     
5 5
 };
Please login to merge, or discard this patch.
system/Inji/Msg.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,8 +49,9 @@
 block discarded – undo
49 49
      * @return array
50 50
      */
51 51
     public static function get($clean = false) {
52
-        if (empty($_SESSION['_INJI_MSG']))
53
-            return [];
52
+        if (empty($_SESSION['_INJI_MSG'])) {
53
+                    return [];
54
+        }
54 55
         $msgs = $_SESSION['_INJI_MSG'];
55 56
         if ($clean) {
56 57
             $_SESSION['_INJI_MSG'] = [];
Please login to merge, or discard this patch.
index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     }
38 38
 }
39 39
 
40
-require_once( INJI_SYSTEM_DIR . '/init.php' );
40
+require_once(INJI_SYSTEM_DIR . '/init.php');
41 41
 
42 42
 /**
43 43
  * System error messages
Please login to merge, or discard this patch.
system/modules/Materials/widgets/category/materialList.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 <div class ="category-materials">
13 13
     <div class ="row">
14 14
       <?php
15
-      $i = 0;
16
-      foreach ($materials as $material) {
17
-          ?>
15
+        $i = 0;
16
+        foreach ($materials as $material) {
17
+            ?>
18 18
             <div class = "col-sm-6 category-material">
19 19
                 <a class="category-material-name" href ="<?= $material->getHref(); ?>"><h3><?= $material->name; ?></h3></a>
20 20
                 <div class="category-material-preview"><?= $material->preview; ?></div>
Please login to merge, or discard this patch.
system/modules/Materials/migrations/addPublishDate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-    'up' => function() {
4
+    'up' => function () {
5 5
         Materials\Material::createCol('date_publish');
6 6
         foreach (Materials\Material::getList() as $material) {
7 7
             $material->date_publish = $material->date_create;
Please login to merge, or discard this patch.