From 8a15e172e3b838d8394f15860e46296d28a7ad57 Mon Sep 17 00:00:00 2001 From: Choraimy Kroonstuiver <3661474+axlon@users.noreply.github.com> Date: Tue, 21 Oct 2025 15:12:55 +0200 Subject: [PATCH] Widen `Option::reject()` parameter type --- src/PhpOption/Option.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PhpOption/Option.php b/src/PhpOption/Option.php index 91fab9c..331b129 100644 --- a/src/PhpOption/Option.php +++ b/src/PhpOption/Option.php @@ -384,7 +384,7 @@ abstract public function select($value); * * In other words, this will let all values through except the passed value. * - * @param T $value + * @param mixed $value * * @return Option */