From 1a007ee12c288abdcf95c9a73fd0465293c4aa16 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sun, 26 Nov 2023 15:42:39 +0000 Subject: [PATCH] Apply fixes from StyleCI --- .../src/Framework/Features/Navigation/DocumentationSidebar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/framework/src/Framework/Features/Navigation/DocumentationSidebar.php b/packages/framework/src/Framework/Features/Navigation/DocumentationSidebar.php index cf0a2c16f1c..b1181cba85f 100644 --- a/packages/framework/src/Framework/Features/Navigation/DocumentationSidebar.php +++ b/packages/framework/src/Framework/Features/Navigation/DocumentationSidebar.php @@ -24,7 +24,7 @@ protected function generate(): void }); // If there are no pages other than the index page, we add it to the sidebar so that it's not empty - if($this->items->count() === 0 && DocumentationPage::home() !== null) { + if ($this->items->count() === 0 && DocumentationPage::home() !== null) { $this->items->push(NavItem::fromRoute(DocumentationPage::home())); } }