Passed
Branch master (8b37c1)
by Jeroen
03:09
created
Category
src/IrcClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,10 +76,10 @@
 block discarded – undo
76 76
         $dns = $dnsResolverFactory->createCached('1.1.1.1', $this->loop);
77 77
         $dnsConnector = new \React\Socket\DnsConnector($tcpConnector, $dns);
78 78
 
79
-        $dnsConnector->connect($this->server)->then(function (ConnectionInterface $connection) {
79
+        $dnsConnector->connect($this->server)->then(function(ConnectionInterface $connection) {
80 80
             $this->connection = $connection;
81 81
             
82
-            $this->connection->on('data', function ($data) {
82
+            $this->connection->on('data', function($data) {
83 83
                 foreach ($this->parseMessages($data) as $msg) {
84 84
                     $this->handleIrcMessage($msg);
85 85
                 }
Please login to merge, or discard this patch.