diff --git a/src/assert.php b/src/assert.php index 10da192..0b1cd98 100644 --- a/src/assert.php +++ b/src/assert.php @@ -9,9 +9,11 @@ use function assert; /** - * @param TValue $assertionFn + * @param TValue $value * @param callable(TValue):(bool|string) $assertionFn * + * @return TValue + * * @template TValue */ function assert_return(mixed $value, callable $assertionFn, Throwable|string|null $description = null): mixed