Completed
Push — master ( 2e7ca6...665d5a )
by Ankit
03:17
created
views/validate_login.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require (dirname(__DIR__) . '/vendor/autoload.php');
3
+require (dirname(__DIR__).'/vendor/autoload.php');
4 4
 use ChatApp\Login;
5 5
 
6
-if(isset($_POST['q']))
6
+if (isset($_POST['q']))
7 7
 {
8 8
     $loginField = json_decode($_POST['q']);
9 9
     $login = $loginField->login;
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
         'passLogin' => $password
15 15
     );
16 16
     $result = $obLogin->authLogin($data);
17
-    if(isset($result))
17
+    if (isset($result))
18 18
         echo $result;
19 19
     else
20 20
         echo json_encode([]);
Please login to merge, or discard this patch.
src/Chat.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
 
39 39
     public function onMessage(ConnectionInterface $from, $msg) {
40 40
         $sessionId = $from->WebSocket->request->getCookies()['PHPSESSID'];
41
-        if($msg == 'OpenChat initiated..!')
41
+        if ($msg == 'OpenChat initiated..!')
42 42
         {
43
-            $initial = (object) array();
43
+            $initial = (object)array();
44 44
             $initial->initial = json_decode($this->onSidebar($from->userId));
45 45
 
46
-            if($initial->initial != null) {
46
+            if ($initial->initial != null) {
47 47
                 $initial->conversation = json_decode(
48 48
                     $this->onConversation(
49 49
                         json_encode([
@@ -58,13 +58,13 @@  discard block
 block discarded – undo
58 58
         }
59 59
         elseif ($msg == 'Load Sidebar')
60 60
         {
61
-            $sidebar = (object) array();
61
+            $sidebar = (object)array();
62 62
             $sidebar->sidebar = json_decode($this->onSidebar($from->userId));
63 63
             $from->send(json_encode($sidebar));
64 64
         }
65 65
         elseif (@json_decode($msg)->newConversation == 'Initiated')
66 66
         {
67
-            $result = (object) array();
67
+            $result = (object)array();
68 68
             $result->conversation = json_decode($this->onConversation($msg, False, $sessionId));
69 69
             $from->send(json_encode($result));
70 70
         }
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
                     $client->send(json_encode($receiveResult));
105 105
                     $this->online = 1;
106 106
                 }
107
-                elseif($client == $from)
107
+                elseif ($client == $from)
108 108
                 {
109 109
                     $sentResult->sidebar = json_decode($this->onSidebar($client->userId));
110 110
 
Please login to merge, or discard this patch.
views/message.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once (dirname(__DIR__) . '/vendor/autoload.php');
3
+require_once (dirname(__DIR__).'/vendor/autoload.php');
4 4
 use ChatApp\Session;
5 5
 use Dotenv\Dotenv;
6 6
 $dotenv = new Dotenv(dirname(__DIR__));
7 7
 $dotenv->load();
8 8
 
9
-if(Session::get('start') != null && empty($_GET['user']))
9
+if (Session::get('start') != null && empty($_GET['user']))
10 10
 {
11 11
 
12 12
 ?>
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 
175 175
 <?php
176 176
 }
177
-else{
178
-  header('Location:'. getenv('APP_URL')."/index.php");
177
+else {
178
+  header('Location:'.getenv('APP_URL')."/index.php");
179 179
 }
180 180
 ?>
Please login to merge, or discard this patch.
src/Search.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 namespace ChatApp;
4
-require_once (dirname(__DIR__) . '/vendor/autoload.php');
4
+require_once (dirname(__DIR__).'/vendor/autoload.php');
5 5
 use ChatApp\Time;
6 6
 use ChatApp\Session;
7 7
 use Dotenv\Dotenv;
@@ -38,23 +38,23 @@  discard block
 block discarded – undo
38 38
         $suggestion = $suggestion->value;
39 39
         $flag = 0;
40 40
         $userId = Session::get('start');
41
-        if($userId != null && !empty($suggestion))
41
+        if ($userId != null && !empty($suggestion))
42 42
         {
43 43
             $suggestion = trim($suggestion);
44
-            if($suggestion != "")
44
+            if ($suggestion != "")
45 45
             {
46 46
                 $query = "SELECT * FROM login where login_id != '$userId' and name like '$suggestion%' ORDER BY name DESC";
47
-                if($result = $this->connect->query($query))
47
+                if ($result = $this->connect->query($query))
48 48
                 {
49
-                    if($result->num_rows > 0)
49
+                    if ($result->num_rows > 0)
50 50
                     {
51
-                        while($row = $result->fetch_assoc())
51
+                        while ($row = $result->fetch_assoc())
52 52
                         {
53 53
                             $check_id = $row["login_id"];
54 54
                             $query = "SELECT * from total_message where (user1 = '$check_id' and user2 = '$userId') or (user2 = '$check_id' and user1 = '$userId')";
55
-                            if($result1 = $this->connect->query($query))
55
+                            if ($result1 = $this->connect->query($query))
56 56
                             {
57
-                                if($result1->num_rows > 0)
57
+                                if ($result1->num_rows > 0)
58 58
                                 {
59 59
                                     $fetch = $result1->fetch_assoc();
60 60
                                     $fetch['time'] = $this->obTime->timeConversion($fetch['time']);
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
                         }
67 67
                     }
68 68
                 }
69
-                if($flag != 0)
69
+                if ($flag != 0)
70 70
                 {
71 71
                     $this->array = array_merge([], ["Search" => $this->array]);
72 72
                     return json_encode($this->array);
Please login to merge, or discard this patch.