Completed
Push — master ( 7176ab...7f38c9 )
by Ankit
03:21 queued 21s
created
src/Chat.php 4 patches
Doc Comments   +20 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@  discard block
 block discarded – undo
26 26
         echo "New connection! ({$conn->resourceId})\n";
27 27
     }
28 28
 
29
+    /**
30
+     * @param ConnectionInterface $conn
31
+     */
29 32
     public function setID($conn)
30 33
     {
31 34
         session_id($conn->WebSocket->request->getCookies()['PHPSESSID']);
@@ -126,30 +129,47 @@  discard block
 block discarded – undo
126 129
         return $obSidebar->LoadSideBar($data);
127 130
     }
128 131
 
132
+    /**
133
+     * @param string $data
134
+     * @param boolean $para
135
+     */
129 136
     public function onConversation($data, $para, $sessionId)
130 137
     {
131 138
         $obConversation = new Conversation($sessionId);
132 139
         return $obConversation->ConversationLoad($data, $para);
133 140
     }
134 141
 
142
+    /**
143
+     * @param string $data
144
+     * @param boolean $para
145
+     */
135 146
     public function onReceiver($data, $para, $sessionId)
136 147
     {
137 148
         $obReceiver = new Receiver($sessionId);
138 149
         return $obReceiver->ReceiverLoad($data, True);
139 150
     }
140 151
 
152
+    /**
153
+     * @param string $data
154
+     */
141 155
     public function onSearch($data, $sessionId)
142 156
     {
143 157
         $obSearch = new Search($sessionId);
144 158
         return $obSearch->SearchItem(json_decode($data));
145 159
     }
146 160
 
161
+    /**
162
+     * @param string $data
163
+     */
147 164
     public function onCompose($data, $sessionId)
148 165
     {
149 166
         $obCompose = new Compose($sessionId);
150 167
         return $obCompose->SelectUser(json_decode($data));
151 168
     }
152 169
 
170
+    /**
171
+     * @param string $data
172
+     */
153 173
     public function onReply($data, $sessionId)
154 174
     {
155 175
         $obReply = new Reply($sessionId);
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,9 @@
 block discarded – undo
2 2
 namespace ChatApp;
3 3
 use Ratchet\MessageComponentInterface;
4 4
 use Ratchet\ConnectionInterface;
5
-use ChatApp\Models\Message;
6 5
 use ChatApp\Reply;
7 6
 use ChatApp\Conversation;
8 7
 use ChatApp\Receiver;
9
-use ChatApp\SideBar;
10 8
 use ChatApp\Search;
11 9
 use ChatApp\Compose;
12 10
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -12 removed lines patch added patch discarded remove patch
@@ -52,28 +52,23 @@  discard block
 block discarded – undo
52 52
 
53 53
             $initial->conversation[0]->login_status = $this->online;
54 54
             $from->send(json_encode($initial));
55
-        }
56
-        elseif ($msg == 'Load Sidebar')
55
+        } elseif ($msg == 'Load Sidebar')
57 56
         {
58 57
             @$initial->initial = json_decode($this->onSidebar($from->userId));
59 58
             $from->send(json_encode($initial));
60
-        }
61
-        elseif (@json_decode($msg)->newConversation == 'Initiated')
59
+        } elseif (@json_decode($msg)->newConversation == 'Initiated')
62 60
         {
63 61
             @$result->conversation = json_decode($this->onConversation($msg, False, $sessionId));
64 62
             $from->send(json_encode($result));
65
-        }
66
-        elseif (@json_decode($msg)->search == 'search')
63
+        } elseif (@json_decode($msg)->search == 'search')
67 64
         {
68 65
             $searchResult = $this->onSearch($msg, $sessionId);
69 66
             $from->send($searchResult);
70
-        }
71
-        elseif (@json_decode($msg)->Compose == 'Compose')
67
+        } elseif (@json_decode($msg)->Compose == 'Compose')
72 68
         {
73 69
             $composeResult = $this->onCompose($msg, $sessionId);
74 70
             $from->send($composeResult);
75
-        }
76
-        else
71
+        } else
77 72
         {
78 73
             $this->onReply($msg, $sessionId);
79 74
 
@@ -97,8 +92,7 @@  discard block
 block discarded – undo
97 92
 
98 93
                     $client->send(json_encode($result));
99 94
                     $this->online = 1;
100
-                }
101
-                elseif($client == $from)
95
+                } elseif($client == $from)
102 96
                 {
103 97
                     @$result->sidebar = json_decode($this->onSidebar($client->userId));
104 98
 
Please login to merge, or discard this 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.
src/Reply.php 3 patches
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -90,6 +90,11 @@
 block discarded – undo
90 90
         $this->connect->close();
91 91
     }
92 92
 
93
+    /**
94
+     * @param string $identifier
95
+     * @param string $reply
96
+     * @param string $time
97
+     */
93 98
     function UpdateMessages($query, $identifier, $reply, $id, $time)
94 99
     {
95 100
         if($result = $this->connect->query($query))
Please login to merge, or discard this patch.
Braces   +22 added lines, -17 removed lines patch added patch discarded remove patch
@@ -31,18 +31,22 @@  discard block
 block discarded – undo
31 31
     public function replyTo($msg)
32 32
     {
33 33
 
34
-        if(Session::get('start') != null && isset($msg))  //checks for session login and the value send
34
+        if(Session::get('start') != null && isset($msg)) {
35
+            //checks for session login and the value send
35 36
         {
36 37
             $userId = Session::get('start');
38
+        }
37 39
             $msg = json_decode($msg);   //decode json value
38 40
             $identifier = $msg->name;
39 41
 
40 42
             $receiverID = $identifier;  //stores id of the person whom message is to be sent
41 43
 
42
-            if($identifier > $userId)    // geneate specific unique code to store messages
44
+            if($identifier > $userId) {
45
+                // geneate specific unique code to store messages
43 46
                 $identifier = $userId . ":" . $identifier;
44
-            else
45
-                $identifier = $identifier . ":" . $userId;
47
+            } else {
48
+                            $identifier = $identifier . ":" . $userId;
49
+            }
46 50
 
47 51
             $reply = addslashes(trim($msg->reply[0])); // stores the message sent by the user.
48 52
 
@@ -56,27 +60,31 @@  discard block
 block discarded – undo
56 60
                 $query = "SELECT * from login where login_id = '$receiverID'";
57 61
 
58 62
                 $result = $this->connect->query($query);
59
-                if($result->num_rows > 0)     // if true
63
+                if($result->num_rows > 0) {
64
+                    // if true
60 65
                 {
61 66
                     //check whether he is sending message for thr first time or he has sent messages before
62 67
                     $query = "SELECT * from total_message where identifier = '$identifier'";
68
+                }
63 69
                     $result = $this->connect->query($query);
64
-                    if($result->num_rows>0)               // if he has sent messages before
70
+                    if($result->num_rows>0) {
71
+                        // if he has sent messages before
65 72
                     {
66 73
                         // Update Total_Message Table
67 74
                         $query = "UPDATE total_message SET total_messages = total_messages+1, time = '$time', unread = 1, id = '$time_id' WHERE identifier = '$identifier'";
75
+                    }
68 76
                         $this->updateMessages($query, $identifier, $reply, $userId, $time);
69 77
 
70
-                    }
71
-                    else    // if he sends message for the first time
78
+                    } else    // if he sends message for the first time
72 79
                     {
73 80
                         $length = strlen($userId);
74
-                        if(substr($identifier, 0, $length) == $userId) // generate specific unique code
81
+                        if(substr($identifier, 0, $length) == $userId) {
82
+                            // generate specific unique code
75 83
                         {
76 84
                             $user2 = substr($identifier, $length+1);
77
-                            $user1 = $userId;
78 85
                         }
79
-                        else
86
+                            $user1 = $userId;
87
+                        } else
80 88
                         {
81 89
                             $user2 = $userId;
82 90
                             $length = strlen($identifier) - $length-1;
@@ -86,14 +94,12 @@  discard block
 block discarded – undo
86 94
                         $query = "INSERT into total_message values('$identifier', 1, '$user1', '$user2', 1, '$time', '$time_id')";
87 95
                         $this->updateMessages($query, $identifier, $reply, $userId, $time);
88 96
                     }
89
-                }
90
-                else // if he is unauthorized echo message is failed
97
+                } else // if he is unauthorized echo message is failed
91 98
                 {
92 99
                     echo "Message is failed";
93 100
                 }
94 101
             }
95
-        }
96
-        else
102
+        } else
97 103
         {
98 104
             echo "failed";
99 105
         }
@@ -109,8 +115,7 @@  discard block
 block discarded – undo
109 115
             if($result = $this->connect->query($query))
110 116
             {
111 117
                 echo "Messages is sent \n";    // if query is executed return true
112
-            }
113
-            else
118
+            } else
114 119
             {
115 120
                 echo "Message is failed";
116 121
             }
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 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\Session;
6 6
 use Dotenv\Dotenv;
7 7
 $dotenv = new Dotenv(dirname(__DIR__));
@@ -31,37 +31,37 @@  discard block
 block discarded – undo
31 31
     public function replyTo($msg)
32 32
     {
33 33
 
34
-        if(Session::get('start') != null && isset($msg))  //checks for session login and the value send
34
+        if (Session::get('start') != null && isset($msg))  //checks for session login and the value send
35 35
         {
36 36
             $userId = Session::get('start');
37
-            $msg = json_decode($msg);   //decode json value
37
+            $msg = json_decode($msg); //decode json value
38 38
             $identifier = $msg->name;
39 39
 
40
-            $receiverID = $identifier;  //stores id of the person whom message is to be sent
40
+            $receiverID = $identifier; //stores id of the person whom message is to be sent
41 41
 
42
-            if($identifier > $userId)    // geneate specific unique code to store messages
43
-                $identifier = $userId . ":" . $identifier;
42
+            if ($identifier > $userId)    // geneate specific unique code to store messages
43
+                $identifier = $userId.":".$identifier;
44 44
             else
45
-                $identifier = $identifier . ":" . $userId;
45
+                $identifier = $identifier.":".$userId;
46 46
 
47 47
             $reply = addslashes(trim($msg->reply[0])); // stores the message sent by the user.
48 48
 
49
-            $time = date("D d M Y H:i:s", time() + 16200);  // current time
49
+            $time = date("D d M Y H:i:s", time() + 16200); // current time
50 50
             $time_id = date("YmdHis", time() + 16200); //to sort the array on the basis of time
51 51
 
52 52
             //the sender id must not be equal to current session id
53
-            if($reply != "" && $receiverID != $userId)
53
+            if ($reply != "" && $receiverID != $userId)
54 54
             {
55 55
                 // check whether the receiver is authorized or registered
56 56
                 $query = "SELECT * from login where login_id = '$receiverID'";
57 57
 
58 58
                 $result = $this->connect->query($query);
59
-                if($result->num_rows > 0)     // if true
59
+                if ($result->num_rows > 0)     // if true
60 60
                 {
61 61
                     //check whether he is sending message for thr first time or he has sent messages before
62 62
                     $query = "SELECT * from total_message where identifier = '$identifier'";
63 63
                     $result = $this->connect->query($query);
64
-                    if($result->num_rows>0)               // if he has sent messages before
64
+                    if ($result->num_rows > 0)               // if he has sent messages before
65 65
                     {
66 66
                         // Update Total_Message Table
67 67
                         $query = "UPDATE total_message SET total_messages = total_messages+1, time = '$time', unread = 1, id = '$time_id' WHERE identifier = '$identifier'";
@@ -71,15 +71,15 @@  discard block
 block discarded – undo
71 71
                     else    // if he sends message for the first time
72 72
                     {
73 73
                         $length = strlen($userId);
74
-                        if(substr($identifier, 0, $length) == $userId) // generate specific unique code
74
+                        if (substr($identifier, 0, $length) == $userId) // generate specific unique code
75 75
                         {
76
-                            $user2 = substr($identifier, $length+1);
76
+                            $user2 = substr($identifier, $length + 1);
77 77
                             $user1 = $userId;
78 78
                         }
79 79
                         else
80 80
                         {
81 81
                             $user2 = $userId;
82
-                            $length = strlen($identifier) - $length-1;
82
+                            $length = strlen($identifier) - $length - 1;
83 83
                             $user1 = substr($identifier, 0, $length);
84 84
                         }
85 85
                         // insert Details in Total_Message Table
@@ -102,13 +102,13 @@  discard block
 block discarded – undo
102 102
 
103 103
     public function updateMessages($query, $identifier, $reply, $userId, $time)
104 104
     {
105
-        if($result = $this->connect->query($query))
105
+        if ($result = $this->connect->query($query))
106 106
         {
107 107
             //insert message in db
108 108
             $query = "INSERT into messages values('$identifier', '$reply', '$userId', '$time', null)";
109
-            if($result = $this->connect->query($query))
109
+            if ($result = $this->connect->query($query))
110 110
             {
111
-                echo "Messages is sent \n";    // if query is executed return true
111
+                echo "Messages is sent \n"; // if query is executed return true
112 112
             }
113 113
             else
114 114
             {
Please login to merge, or discard this patch.
src/Compose.php 2 patches
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -40,18 +40,15 @@
 block discarded – undo
40 40
                         }
41 41
                         $this->array = array_merge([], ["Compose" => $this->array]);
42 42
                         return json_encode($this->array);
43
-                    }
44
-                    else
43
+                    } else
45 44
                     {
46 45
                         return json_encode(["Compose" => "Not Found"]);
47 46
                     }
48
-                }
49
-                else
47
+                } else
50 48
                 {
51 49
                     return json_encode(["Compose" => "Query Failed"]);
52 50
                 }
53
-            }
54
-            else
51
+            } else
55 52
             {
56 53
                 return json_encode(["Compose" => "Not Found"]);
57 54
             }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 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\Session;
6 6
 use Dotenv\Dotenv;
7 7
 $dotenv = new Dotenv(dirname(__DIR__));
@@ -34,18 +34,18 @@  discard block
 block discarded – undo
34 34
     public function selectUser($msg)
35 35
     {
36 36
         $msg = $msg->value;
37
-        if(Session::get('start') != null && isset($msg))
37
+        if (Session::get('start') != null && isset($msg))
38 38
         {
39 39
             $userId = Session::get('start');
40 40
             $suggestion = trim($msg);
41
-            if($suggestion != "" )
41
+            if ($suggestion != "")
42 42
             {
43 43
                 $query = "SELECT * FROM login where login_id != '$userId' and name like '$suggestion%' ORDER BY name DESC";
44
-                if($result = $this->connect->query($query))
44
+                if ($result = $this->connect->query($query))
45 45
                 {
46
-                    if($result->num_rows > 0)
46
+                    if ($result->num_rows > 0)
47 47
                     {
48
-                        while($row = $result->fetch_assoc())
48
+                        while ($row = $result->fetch_assoc())
49 49
                         {
50 50
                             $this->array = array_merge($this->array, [$row]);
51 51
                         }
Please login to merge, or discard this patch.
src/Time.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@
 block discarded – undo
16 16
     function TimeConversion($time)
17 17
     {
18 18
 
19
-        if(substr($time,4,11) == date("d M Y", time() + 16200))
20
-            $time = substr($time,16,5);
21
-        else if(substr($time,7,8) == date("M Y", time() + 16200) && substr($time, 4,2) - date("d") < 7)
22
-            $time = substr($time,0,3);
23
-        else if(substr($time,11,4) == date("Y", time() + 16200))
24
-            $time = substr($time,4,6);
19
+        if (substr($time, 4, 11) == date("d M Y", time() + 16200))
20
+            $time = substr($time, 16, 5);
21
+        else if (substr($time, 7, 8) == date("M Y", time() + 16200) && substr($time, 4, 2) - date("d") < 7)
22
+            $time = substr($time, 0, 3);
23
+        else if (substr($time, 11, 4) == date("Y", time() + 16200))
24
+            $time = substr($time, 4, 6);
25 25
         else
26
-            $time = substr($time,4,11);
26
+            $time = substr($time, 4, 11);
27 27
 
28 28
         return $time;
29 29
     }
Please login to merge, or discard this patch.
Braces   +9 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,14 +16,15 @@
 block discarded – undo
16 16
     function TimeConversion($time)
17 17
     {
18 18
 
19
-        if(substr($time,4,11) == date("d M Y", time() + 16200))
20
-            $time = substr($time,16,5);
21
-        else if(substr($time,7,8) == date("M Y", time() + 16200) && substr($time, 4,2) - date("d") < 7)
22
-            $time = substr($time,0,3);
23
-        else if(substr($time,11,4) == date("Y", time() + 16200))
24
-            $time = substr($time,4,6);
25
-        else
26
-            $time = substr($time,4,11);
19
+        if(substr($time,4,11) == date("d M Y", time() + 16200)) {
20
+                    $time = substr($time,16,5);
21
+        } else if(substr($time,7,8) == date("M Y", time() + 16200) && substr($time, 4,2) - date("d") < 7) {
22
+                    $time = substr($time,0,3);
23
+        } else if(substr($time,11,4) == date("Y", time() + 16200)) {
24
+                    $time = substr($time,4,6);
25
+        } else {
26
+                    $time = substr($time,4,11);
27
+        }
27 28
 
28 29
         return $time;
29 30
     }
Please login to merge, or discard this patch.
src/Models/message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 class Message extends Model
10 10
 {
11
-    protected $table='message';
11
+    protected $table = 'message';
12 12
 
13 13
     protected $fillable = ['identifier_message_number', 'message', 'sent_by', 'time'];
14 14
 }
Please login to merge, or discard this patch.
src/Search.php 2 patches
Braces   +4 added lines, -6 removed lines patch added patch discarded remove patch
@@ -61,16 +61,14 @@
 block discarded – undo
61 61
                 {
62 62
                     $this->array = array_merge([], ["Search" => $this->array]);
63 63
                     return json_encode($this->array);
64
+                } else {
65
+                                    return json_encode(["Search" => "Not Found"]);
64 66
                 }
65
-                else
66
-                    return json_encode(["Search" => "Not Found"]);
67
-            }
68
-            else
67
+            } else
69 68
             {
70 69
                 return json_encode(["Search" => "Not Found"]);
71 70
             }
72
-        }
73
-        else
71
+        } else
74 72
         {
75 73
             return json_encode(["Search" => "Not Found"]);
76 74
         }
Please login to merge, or discard this 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 && isset($suggestion))
41
+        if ($userId != null && isset($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 ASC";
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.
src/SideBar.php 2 patches
Braces   +4 added lines, -9 removed lines patch added patch discarded remove patch
@@ -38,27 +38,22 @@
 block discarded – undo
38 38
                         if($substring != $userId)
39 39
                         {
40 40
                             $this->Data($substring, $row);
41
-                        }
42
-
43
-                        else
41
+                        } else
44 42
                         {
45 43
                             $substring = substr($identifier, $length+1);
46 44
                             $this->Data($substring, $row);
47 45
                         }
48 46
                     }
49 47
                     return json_encode($this->array);
50
-                }
51
-                else
48
+                } else
52 49
                 {
53 50
                     return json_encode(null);
54 51
                 }
55
-            }
56
-            else
52
+            } else
57 53
             {
58 54
                 echo "Query Failed";
59 55
             }
60
-        }
61
-        else
56
+        } else
62 57
         {
63 58
             header('Location:../login.php');
64 59
         }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 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 Dotenv\Dotenv;
7 7
 $dotenv = new Dotenv(dirname(__DIR__));
@@ -32,26 +32,26 @@  discard block
 block discarded – undo
32 32
 
33 33
     public function loadSideBar($userId)
34 34
     {
35
-        if(isset($userId))
35
+        if (isset($userId))
36 36
         {
37 37
             $query = "SELECT * FROM total_message WHERE user1='$userId' or user2='$userId'  ORDER BY id DESC";
38
-            if($result = $this->connect->query($query))
38
+            if ($result = $this->connect->query($query))
39 39
             {
40 40
                 if ($result->num_rows > 0)
41 41
                 {
42 42
                     $length = strlen($userId);
43
-                    while($row = $result->fetch_assoc())
43
+                    while ($row = $result->fetch_assoc())
44 44
                     {
45 45
                         $identifier = $row['identifier'];
46 46
                         $substring = substr($identifier, 0, $length);
47
-                        if($substring != $userId)
47
+                        if ($substring != $userId)
48 48
                         {
49 49
                             $this->data($substring, $row);
50 50
                         }
51 51
 
52 52
                         else
53 53
                         {
54
-                            $substring = substr($identifier, $length+1);
54
+                            $substring = substr($identifier, $length + 1);
55 55
                             $this->Data($substring, $row);
56 56
                         }
57 57
                     }
@@ -77,9 +77,9 @@  discard block
 block discarded – undo
77 77
     public function data($userId, $row)
78 78
     {
79 79
         $query = "SELECT username, name, login_status, login_id from login where login_id = '$userId'";
80
-        if($result = $this->connect->query($query))
80
+        if ($result = $this->connect->query($query))
81 81
         {
82
-            if($result->num_rows > 0)
82
+            if ($result->num_rows > 0)
83 83
             {
84 84
                 $fetch = $result->fetch_assoc();
85 85
                 $row['time'] = $this->obTime->timeConversion($row['time']);
Please login to merge, or discard this patch.
cmd.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 use Ratchet\WebSocket\WsServer;
8 8
 use ChatApp\Chat;
9 9
 
10
-$server =IoServer::factory(
10
+$server = IoServer::factory(
11 11
 	new HttpServer(
12 12
 		new WsServer(
13 13
 			new Chat()
Please login to merge, or discard this patch.
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -8,12 +8,12 @@
 block discarded – undo
8 8
 use ChatApp\Chat;
9 9
 
10 10
 $server =IoServer::factory(
11
-	new HttpServer(
12
-		new WsServer(
13
-			new Chat()
14
-			)
15
-		)
16
-	,
17
-	8080
18
-	);
11
+    new HttpServer(
12
+        new WsServer(
13
+            new Chat()
14
+            )
15
+        )
16
+    ,
17
+    8080
18
+    );
19 19
 $server->run();
Please login to merge, or discard this patch.
src/Validate.php 3 patches
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
 		{
41 41
 			if ($result->num_rows>0) {
42 42
 				return 1;
43
+			} else {
44
+							return 0;
43 45
 			}
44
-			else
45
-				return 0;
46 46
 		}
47 47
 	}
48 48
 
@@ -52,9 +52,9 @@  discard block
 block discarded – undo
52 52
 		if ($result=$this->connect->query($query)) {
53 53
 			if ($result->num_rows>0) {
54 54
 				return 1;
55
+			} else {
56
+							return 0;
55 57
 			}
56
-			else
57
-				return 0;
58 58
 			
59 59
 		}
60 60
 	}
Please login to merge, or discard this patch.
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -11,40 +11,40 @@
 block discarded – undo
11 11
 */
12 12
 class Validate
13 13
 {
14
-	protected $connect;
14
+    protected $connect;
15 15
 
16
-	public function __construct()
17
-	{
18
-		$this->connect = mysqli_connect(
16
+    public function __construct()
17
+    {
18
+        $this->connect = mysqli_connect(
19 19
             getenv('DB_HOST'),
20 20
             getenv('DB_USER'),
21 21
             getenv('DB_PASSWORD'),
22 22
             getenv('DB_NAME')
23 23
         );
24
-	}
24
+    }
25 25
 
26
-	public function validateEmailInDb($email)
27
-	{
28
-		$query = "SELECT login_id FROM login WHERE email = '$email'";
29
-		if ($result = $this->connect->query($query))
30
-		{
31
-			if ($result->num_rows > 0) {
32
-				return 1;
33
-			}
34
-			else
35
-				return 0;
36
-		}
37
-	}
26
+    public function validateEmailInDb($email)
27
+    {
28
+        $query = "SELECT login_id FROM login WHERE email = '$email'";
29
+        if ($result = $this->connect->query($query))
30
+        {
31
+            if ($result->num_rows > 0) {
32
+                return 1;
33
+            }
34
+            else
35
+                return 0;
36
+        }
37
+    }
38 38
 
39
-	function validateUsernameInDb($username)
40
-	{
41
-		$query = "SELECT login_id FROM login WHERE username = '$username'";
42
-		if ($result = $this->connect->query($query)) {
43
-			if ($result->num_rows > 0) {
44
-				return 1;
45
-			}
46
-			else
47
-				return 0;
48
-		}
49
-	}
39
+    function validateUsernameInDb($username)
40
+    {
41
+        $query = "SELECT login_id FROM login WHERE username = '$username'";
42
+        if ($result = $this->connect->query($query)) {
43
+            if ($result->num_rows > 0) {
44
+                return 1;
45
+            }
46
+            else
47
+                return 0;
48
+        }
49
+    }
50 50
 }
Please login to merge, or discard this 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
 namespace ChatApp;
3
-require_once (dirname(__DIR__) . '/vendor/autoload.php');
3
+require_once (dirname(__DIR__).'/vendor/autoload.php');
4 4
 use Dotenv\Dotenv;
5 5
 $dotenv = new Dotenv(dirname(__DIR__));
6 6
 $dotenv->load();
Please login to merge, or discard this patch.