@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | { |
83 | 83 | if (!self::$self) { |
84 | 84 | throw new \BadMethodCallException( |
85 | - 'Co::async() must be called along with Co::wait(). ' . |
|
85 | + 'Co::async() must be called along with Co::wait(). '. |
|
86 | 86 | 'This method is mainly expected to be used in CURLOPT_WRITEFUNCTION callback.' |
87 | 87 | ); |
88 | 88 | } |
@@ -105,15 +105,15 @@ discard block |
||
105 | 105 | $return = $exception = null; |
106 | 106 | $deferred = new Deferred; |
107 | 107 | $deferred->promise()->then( |
108 | - function ($r) use (&$return) { |
|
108 | + function($r) use (&$return) { |
|
109 | 109 | $return = $r; |
110 | 110 | }, |
111 | - function ($e) use (&$exception) { |
|
111 | + function($e) use (&$exception) { |
|
112 | 112 | $exception = $e; |
113 | 113 | } |
114 | 114 | ); |
115 | 115 | // For convenience, all values are wrapped into generator |
116 | - $genfunc = function () use ($value) { |
|
116 | + $genfunc = function() use ($value) { |
|
117 | 117 | yield CoInterface::RETURN_WITH => (yield $value); |
118 | 118 | }; |
119 | 119 | $con = Utils::normalize($genfunc, $this->options); |
@@ -170,9 +170,9 @@ discard block |
||
170 | 170 | if ($gc->key() === CoInterface::DELAY) { |
171 | 171 | $dfd = new Deferred; |
172 | 172 | $this->pool->addDelay($gc->current(), $dfd); |
173 | - $dfd->promise()->then(function () use ($gc) { |
|
173 | + $dfd->promise()->then(function() use ($gc) { |
|
174 | 174 | $gc->send(null); |
175 | - })->always(function () use ($gc, $deferred) { |
|
175 | + })->always(function() use ($gc, $deferred) { |
|
176 | 176 | $this->processGeneratorContainer($gc, $deferred); |
177 | 177 | }); |
178 | 178 | return; |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | $this->promiseAll($yieldables, $gc->throwAcceptable())->then( |
203 | 203 | self::getApplier($yielded, $yieldables, [$gc, 'send']), |
204 | 204 | [$gc, 'throw_'] |
205 | - )->always(function () use ($gc, $deferred) { |
|
205 | + )->always(function() use ($gc, $deferred) { |
|
206 | 206 | // Continue |
207 | 207 | $this->processGeneratorContainer($gc, $deferred); |
208 | 208 | }); |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | */ |
217 | 217 | private static function getApplier($yielded, $yieldables, callable $next) |
218 | 218 | { |
219 | - return function (array $results) use ($yielded, $yieldables, $next) { |
|
219 | + return function(array $results) use ($yielded, $yieldables, $next) { |
|
220 | 220 | foreach ($results as $hash => $resolved) { |
221 | 221 | $current = &$yielded; |
222 | 222 | foreach ($yieldables[$hash]['keylist'] as $key) { |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | if (!$throw_acceptable) { |
246 | 246 | $original_dfd = $dfd; |
247 | 247 | $dfd = new Deferred; |
248 | - $absorber = function ($any) use ($original_dfd) { |
|
248 | + $absorber = function($any) use ($original_dfd) { |
|
249 | 249 | $original_dfd->resolve($any); |
250 | 250 | }; |
251 | 251 | $dfd->promise()->then($absorber, $absorber); |