From a652836ab0748a9aa1139d2eea4b3c3162cba8d6 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Sun, 3 Dec 2023 20:15:32 +0000 Subject: [PATCH] Remove redundant phpdoc lines --- src/Each.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/Each.php b/src/Each.php index 1a7aa0f..c09d23c 100644 --- a/src/Each.php +++ b/src/Each.php @@ -19,9 +19,7 @@ final class Each * index, and the aggregate promise. The callback can invoke any necessary * side effects and choose to resolve or reject the aggregate if needed. * - * @param mixed $iterable Iterator or array to iterate over. - * @param callable $onFulfilled - * @param callable $onRejected + * @param mixed $iterable Iterator or array to iterate over. */ public static function of( $iterable, @@ -44,8 +42,6 @@ public static function of( * * @param mixed $iterable * @param int|callable $concurrency - * @param callable $onFulfilled - * @param callable $onRejected */ public static function ofLimit( $iterable, @@ -67,7 +63,6 @@ public static function ofLimit( * * @param mixed $iterable * @param int|callable $concurrency - * @param callable $onFulfilled */ public static function ofLimitAll( $iterable,