@@ -81,7 +81,7 @@ discard block |
||
| 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 |
||
| 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 | |