Passed
Push — master ( 8a34b0...16d9dd )
by Sergey
02:30
created
src/Client.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -74,16 +74,16 @@
 block discarded – undo
74 74
 
75 75
     protected function setConnectionHandlers()
76 76
     {
77
-        $this->connection->on('data', function ($chunk) {
77
+        $this->connection->on('data', function($chunk) {
78 78
             $parsed = $this->parser->parseRawResponse($chunk);
79 79
             $this->resolveRequests($parsed);
80 80
         });
81 81
 
82
-        $this->connection->on('failed', function () {
82
+        $this->connection->on('failed', function() {
83 83
             $this->pool->rejectAll(new ConnectionClosedException());
84 84
         });
85 85
 
86
-        $this->connection->on('close', function () {
86
+        $this->connection->on('close', function() {
87 87
             if (!$this->isEnding) {
88 88
                 $this->emit('error', [new ConnectionClosedException()]);
89 89
             }
Please login to merge, or discard this patch.