From 8989df4492e6d28ffa3c7b5f709fbebf40f49977 Mon Sep 17 00:00:00 2001 From: Malte Wunsch Date: Wed, 6 Nov 2024 15:43:20 +0100 Subject: [PATCH] =?UTF-8?q?Erg=C3=A4nze=20return=20types?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Damit vermeiden wir Deprecations --- src/Command/DumpTreeCommand.php | 2 +- src/Command/LookupNodeCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Command/DumpTreeCommand.php b/src/Command/DumpTreeCommand.php index 8d240f7..e85659d 100644 --- a/src/Command/DumpTreeCommand.php +++ b/src/Command/DumpTreeCommand.php @@ -11,7 +11,7 @@ class DumpTreeCommand extends TreeCommand { private $shortOutput = false; - protected function configure() + protected function configure(): void { $this ->setName('webfactory:navigation:dump-tree') diff --git a/src/Command/LookupNodeCommand.php b/src/Command/LookupNodeCommand.php index 3163fab..34860d3 100644 --- a/src/Command/LookupNodeCommand.php +++ b/src/Command/LookupNodeCommand.php @@ -8,7 +8,7 @@ class LookupNodeCommand extends TreeCommand { - protected function configure() + protected function configure(): void { $this ->setName('webfactory:navigation:lookup-node')