Completed
Push — master ( 75d991...74cbb3 )
by Ankit
03:12
created
src/Compose.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 namespace ChatApp;
14 14
 
15 15
 require_once dirname(__DIR__).'/vendor/autoload.php';
16
-use ChatApp\Session;
17 16
 use Dotenv\Dotenv;
18 17
 $dotenv = new Dotenv(dirname(__DIR__));
19 18
 $dotenv->load();
Please login to merge, or discard this patch.
src/Receiver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
             $this->conversation->conversationLoad($msg, $para)
77 77
         );
78 78
         // $id1 = json_decode($msg)->details;
79
-        for ($i = 1 ; $i < count($this->messages); $i++) {
79
+        for ($i = 1; $i < count($this->messages); $i++) {
80 80
             $this->messages[$i]->start = $id1;
81 81
         }
82 82
         $id2 = bin2hex(convert_uuencode($id2));
Please login to merge, or discard this patch.