From b868613ff66502798a36f7ab34347f6831a84f21 Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Tue, 19 Dec 2023 14:42:04 +0100 Subject: [PATCH] Format long line --- .../Framework/Actions/GeneratesDocumentationSearchIndex.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/framework/src/Framework/Actions/GeneratesDocumentationSearchIndex.php b/packages/framework/src/Framework/Actions/GeneratesDocumentationSearchIndex.php index 17f9a103474..7cd75691d9d 100644 --- a/packages/framework/src/Framework/Actions/GeneratesDocumentationSearchIndex.php +++ b/packages/framework/src/Framework/Actions/GeneratesDocumentationSearchIndex.php @@ -78,6 +78,8 @@ protected function formatDestination(string $slug): string protected function getPagesToExcludeFromSearch(): array { - return array_merge(Config::getArray('docs.exclude_from_search', []), Config::getBool('docs.create_search_page', true) ? ['search'] : []); + return array_merge(Config::getArray('docs.exclude_from_search', []), + Config::getBool('docs.create_search_page', true) ? ['search'] : [] + ); } }