Test Failed
Push — master ( 87e790...e9a009 )
by Alexey
04:35
created
system/modules/Users/Users.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
             ['user_id', $userId],
66 66
             ['hash', $hash]
67 67
         ]);
68
-        if(!$session){
68
+        if (!$session) {
69 69
             if (!headers_sent()) {
70 70
                 setcookie($this->cookiePrefix . "_user_session_hash", '', 0, "/");
71 71
                 setcookie($this->cookiePrefix . "_user_id", '', 0, "/");
Please login to merge, or discard this patch.
system/modules/Chats/models/Chat.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,11 +16,11 @@
 block discarded – undo
16 16
     public static $cols = [
17 17
         'name' => ['type' => 'text'],
18 18
         'code' => ['type' => 'text'],
19
-        'message' => ['type' => 'dataManager','relation'=>'messages'],
19
+        'message' => ['type' => 'dataManager', 'relation'=>'messages'],
20 20
     ];
21 21
     public static $dataManagers = [
22 22
         'manager' => [
23
-            'cols' => ['name', 'code','message']
23
+            'cols' => ['name', 'code', 'message']
24 24
         ]
25 25
     ];
26 26
     public static $forms = [
Please login to merge, or discard this patch.