Completed
Push — master ( e9910e...06e543 )
by Jeroen
01:52
created
src/IrcClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         }
82 82
 
83 83
         $this->isAuthenticated = false;
84
-        $this->connection->onData(function ($msg) {
84
+        $this->connection->onData(function($msg) {
85 85
             $this->handleIrcMessage($msg);
86 86
         });
87 87
         $this->connection->open();
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     public function say(string $target, string $message): void
127 127
     {
128 128
         foreach (explode("\n", $message) as $msg) {
129
-            $this->send("PRIVMSG $target :" . trim($msg));
129
+            $this->send("PRIVMSG $target :".trim($msg));
130 130
         }
131 131
     }
132 132
 
Please login to merge, or discard this patch.