@@ -105,12 +105,12 @@ discard block |
||
105 | 105 | $options = $this->config; |
106 | 106 | $streamRef = $this->stream; |
107 | 107 | |
108 | - $errorHandler = function ($reason) use ($reject) { |
|
108 | + $errorHandler = function($reason) use ($reject) { |
|
109 | 109 | $this->state = self::STATE_AUTH_FAILED; |
110 | 110 | return $reject($reason); |
111 | 111 | }; |
112 | 112 | |
113 | - $connectedHandler = function ($serverOptions) use ($resolve) { |
|
113 | + $connectedHandler = function($serverOptions) use ($resolve) { |
|
114 | 114 | $this->state = self::STATE_AUTH_SUCCEEDED; |
115 | 115 | $this->serverOptions = $serverOptions; |
116 | 116 | return $resolve($serverOptions); |
@@ -118,11 +118,11 @@ discard block |
||
118 | 118 | |
119 | 119 | $this |
120 | 120 | ->connect() |
121 | - ->then(function ($stream) use (&$streamRef, $options, $errorHandler, $connectedHandler) { |
|
121 | + ->then(function($stream) use (&$streamRef, $options, $errorHandler, $connectedHandler) { |
|
122 | 122 | $streamRef = $stream; |
123 | 123 | |
124 | - $stream->on('error', [ $this, 'handleConnectionError' ]); |
|
125 | - $stream->on('close', [ $this, 'handleConnectionClosed' ]); |
|
124 | + $stream->on('error', [$this, 'handleConnectionError']); |
|
125 | + $stream->on('close', [$this, 'handleConnectionClosed']); |
|
126 | 126 | |
127 | 127 | $parser = $this->parser = new ProtocolParser($stream, $this->executor); |
128 | 128 | |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | //$parser->on('close', $closeHandler); |
136 | 136 | $parser->start(); |
137 | 137 | |
138 | - }, [ $this, 'handleConnectionError' ]); |
|
138 | + }, [$this, 'handleConnectionError']); |
|
139 | 139 | }); |
140 | 140 | } |
141 | 141 | |
@@ -150,8 +150,8 @@ discard block |
||
150 | 150 | ->doCommand(new QuitCommand($this)) |
151 | 151 | ->on('success', function() use($resolve) { |
152 | 152 | $this->state = self::STATE_STOPPED; |
153 | - $this->emit('end', [ $this ]); |
|
154 | - $this->emit('close', [ $this ]); |
|
153 | + $this->emit('end', [$this]); |
|
154 | + $this->emit('close', [$this]); |
|
155 | 155 | $resolve($this); |
156 | 156 | }); |
157 | 157 | $this->state = self::STATE_CLOSEING; |
@@ -175,15 +175,15 @@ discard block |
||
175 | 175 | $query->bindParamsFromArray($sqlParams); |
176 | 176 | $this->doCommand($command); |
177 | 177 | |
178 | - $command->on('results', function ($rows, $command) use ($promise) { |
|
178 | + $command->on('results', function($rows, $command) use ($promise) { |
|
179 | 179 | return $command->hasError() |
180 | 180 | ? $promise->reject($command->getError()) |
181 | 181 | : $promise->resolve($command); |
182 | 182 | }); |
183 | - $command->on('error', function ($err, $command) use ($promise) { |
|
183 | + $command->on('error', function($err, $command) use ($promise) { |
|
184 | 184 | return $promise->reject($err); |
185 | 185 | }); |
186 | - $command->on('success', function ($command) use ($promise) { |
|
186 | + $command->on('success', function($command) use ($promise) { |
|
187 | 187 | return $command->hasError() |
188 | 188 | ? $promise->reject($command->getError()) |
189 | 189 | : $promise->resolve($command); |
@@ -197,10 +197,10 @@ discard block |
||
197 | 197 | $promise = new Promise(); |
198 | 198 | |
199 | 199 | $this->doCommand(new PingCommand($this)) |
200 | - ->on('error', function ($reason) use ($promise) { |
|
200 | + ->on('error', function($reason) use ($promise) { |
|
201 | 201 | return $promise->reject($reason); |
202 | 202 | }) |
203 | - ->on('success', function () use ($promise) { |
|
203 | + ->on('success', function() use ($promise) { |
|
204 | 204 | return $promise->resolve(); |
205 | 205 | }); |
206 | 206 | } |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | |
235 | 235 | public function handleConnectionError($err) |
236 | 236 | { |
237 | - $this->emit('error', [ $err, $this ]); |
|
237 | + $this->emit('error', [$err, $this]); |
|
238 | 238 | } |
239 | 239 | |
240 | 240 | public function handleConnectionClosed() |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | if ($this->state < self::STATE_CLOSEING) |
243 | 243 | { |
244 | 244 | $this->state = self::STATE_STOPPED; |
245 | - $this->emit('error', [ new RuntimeException('mysql server has gone away'), $this ]); |
|
245 | + $this->emit('error', [new RuntimeException('mysql server has gone away'), $this]); |
|
246 | 246 | } |
247 | 247 | } |
248 | 248 |