Completed
Push — master ( ebcbe7...06aa7a )
by Ryosuke
04:11
created
src/AllFailedException.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
      * Constructor.
11 11
      * @param string   $message Dummy.
12 12
      * @param int      $code    Dummy.
13
-     * @param mixed    $value   Value to be retrived.
14 13
      */
15 14
     public function __construct($message, $code, $reasons)
16 15
     {
Please login to merge, or discard this patch.
src/Co.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
      * If no yieldables found, AllFailedException is thrown.
280 280
      *
281 281
      * @param  mixed $value
282
-     * @return mixed Resolved value.
282
+     * @return \Generator Resolved value.
283 283
      * @throws AllFailedException
284 284
      */
285 285
     public static function any($value)
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
      * If no yieldables found, AllFailedException is thrown.
299 299
      *
300 300
      * @param  mixed $value
301
-     * @return mixed Resolved value.
301
+     * @return \Generator Resolved value.
302 302
      * @throws \RuntimeException|AllFailedException
303 303
      */
304 304
     public static function race($value)
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
      * You should use only with Co::race() or Co::any().
319 319
      *
320 320
      * @param  mixed $value
321
-     * @return mixed Resolved value.
321
+     * @return \Generator Resolved value.
322 322
      * @throws \RuntimeException
323 323
      */
324 324
     public static function all($value)
Please login to merge, or discard this patch.