From 8a139564bd5b45095f45610c8b3d82c025bb24f2 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Wed, 11 Dec 2024 20:23:16 +0000 Subject: [PATCH] Apply fixes from StyleCI --- .../src/Console/Helpers/InteractivePublishCommandHelper.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/framework/src/Console/Helpers/InteractivePublishCommandHelper.php b/packages/framework/src/Console/Helpers/InteractivePublishCommandHelper.php index 47ca7b74d11..c63a0d988dc 100644 --- a/packages/framework/src/Console/Helpers/InteractivePublishCommandHelper.php +++ b/packages/framework/src/Console/Helpers/InteractivePublishCommandHelper.php @@ -99,11 +99,11 @@ protected function pathRelativeToDirectory(string $source, string $directory): s } /** - * @param array $selectedFiles + * @param array $selectedFiles * @return array */ protected function filterPublishableFiles(array $selectedFiles): array { - return array_filter($this->publishableFilesMap, fn(string $file): bool => in_array($file, $selectedFiles)); + return array_filter($this->publishableFilesMap, fn (string $file): bool => in_array($file, $selectedFiles)); } }