diff --git a/monorepo/stubs/helpers.php b/monorepo/stubs/helpers.php index 03a83af3936..e2cce12125c 100644 --- a/monorepo/stubs/helpers.php +++ b/monorepo/stubs/helpers.php @@ -2,11 +2,13 @@ /** * @template T - * @param T $value - * @param (callable(T): mixed)|null $callback + * + * @param T $value + * @param (callable(T): mixed)|null $callback * @return ($callback is null ? HigherOrderTapProxy : T) * * @psalm-assert-if-true !null $callback + * * @psalm-suppress ImplicitToStringCast */ function tap($value, $callback = null) @@ -19,15 +21,15 @@ function tap($value, $callback = null) class HigherOrderTapProxy { /** - * @param T $target + * @param T $target */ public function __construct($target) { } /** - * @param string $method - * @param array $parameters + * @param string $method + * @param array $parameters * @return T * * @psalm-suppress MixedInferredReturnType, MixedReturnStatement