From 69705f42bb9b2347c2d45e3c91cf1e3be2df316d Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Wed, 17 Jul 2024 16:41:38 +0000 Subject: [PATCH] Apply fixes from StyleCI --- monorepo/stubs/helpers.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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