Completed
Push — master ( 758ab1...6e9bde )
by Ryosuke
03:31
created
src/Co.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use mpyw\Co\Internal\CoOption;
6 6
 use mpyw\Co\Internal\GeneratorContainer;
7 7
 use mpyw\Co\Internal\CURLPool;
8
-
9 8
 use React\Promise\Deferred;
10 9
 use React\Promise\PromiseInterface;
11 10
 use function React\Promise\all;
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
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,7 +105,7 @@  discard block
 block discarded – undo
105 105
         $return = $exception = null;
106 106
         $deferred = new Deferred;
107 107
         // For convenience, all values are wrapped into generator
108
-        $genfunc = function () use ($value, &$return) {
108
+        $genfunc = function() use ($value, &$return) {
109 109
             try {
110 110
                 $return = (yield $value);
111 111
             } catch (\RuntimeException $e) {
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
             if ($gc->key() === CoInterface::DELAY) {
164 164
                 $dfd = new Deferred;
165 165
                 $this->pool->addDelay($gc->current(), $dfd);
166
-                $dfd->promise()->then(function () use ($gc) {
166
+                $dfd->promise()->then(function() use ($gc) {
167 167
                     $gc->send(null);
168
-                })->always(function () use ($gc, $deferred) {
168
+                })->always(function() use ($gc, $deferred) {
169 169
                     $this->processGeneratorContainer($gc, $deferred);
170 170
                 });
171 171
                 return;
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
         $this->promiseAll($yieldables, $gc->throwAcceptable())->then(
196 196
             self::getApplier($yielded, $yieldables, [$gc, 'send']),
197 197
             [$gc, 'throw_']
198
-        )->always(function () use ($gc, $deferred) {
198
+        )->always(function() use ($gc, $deferred) {
199 199
             // Continue
200 200
             $this->processGeneratorContainer($gc, $deferred);
201 201
         });
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
      */
210 210
     private static function getApplier($yielded, $yieldables, callable $next)
211 211
     {
212
-        return function (array $results) use ($yielded, $yieldables, $next) {
212
+        return function(array $results) use ($yielded, $yieldables, $next) {
213 213
             foreach ($results as $hash => $resolved) {
214 214
                 $current = &$yielded;
215 215
                 foreach ($yieldables[$hash]['keylist'] as $key) {
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
             if (!$throw_acceptable) {
239 239
                 $original_dfd = $dfd;
240 240
                 $dfd = new Deferred;
241
-                $absorber = function ($any) use ($original_dfd) {
241
+                $absorber = function($any) use ($original_dfd) {
242 242
                     $original_dfd->resolve($any);
243 243
                 };
244 244
                 $dfd->promise()->then($absorber, $absorber);
Please login to merge, or discard this patch.
src/Internal/CURLPool.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         }
69 69
         $errno = curl_multi_add_handle($this->mh, $ch);
70 70
         if ($errno !== CURLM_OK) {
71
-            $msg = curl_multi_strerror($errno) . ": $ch";
71
+            $msg = curl_multi_strerror($errno).": $ch";
72 72
             $deferred->reject(new \RuntimeException($msg));
73 73
             return;
74 74
         }
Please login to merge, or discard this patch.
src/Internal/CoOption.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     public function offsetGet($offset)
89 89
     {
90 90
         if (!isset($this->options[$offset])) {
91
-            throw new \DomainException('Undefined field: ' + $offset);
91
+            throw new \DomainException('Undefined field: ' +$offset);
92 92
         }
93 93
         return $this->options[$offset];
94 94
     }
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             if (!isset(self::$types[$key])) {
126 126
                 throw new \InvalidArgumentException("Unknown option: $key");
127 127
             }
128
-            $validator = [__CLASS__, 'validate' . self::$types[$key]];
128
+            $validator = [__CLASS__, 'validate'.self::$types[$key]];
129 129
             $options[$key] = $validator($key, $value);
130 130
         }
131 131
         return $options;
Please login to merge, or discard this patch.