From 8d986af5d6b3dda48f577c22ba43f52c6d11f6f3 Mon Sep 17 00:00:00 2001 From: lee-to Date: Sun, 1 Sep 2024 08:07:17 +0000 Subject: [PATCH] [rector] Rector fixes --- src/Decorations/Tabs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Decorations/Tabs.php b/src/Decorations/Tabs.php index e5368c7ca..eac520d71 100644 --- a/src/Decorations/Tabs.php +++ b/src/Decorations/Tabs.php @@ -87,7 +87,7 @@ static function (Fields $tabs): void { ) ); } - )->filter(fn(Tab $tab) => $tab->isSee($tab)); + )->filter(fn(Tab $tab): bool => $tab->isSee($tab)); } public function getFields(): Fields