From 79e7f4cabfa2ecc344ccba2bd01c78661a23101a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Wed, 31 Jul 2024 13:30:48 +0200 Subject: [PATCH] Fix void returns in IseedCommand --- src/Orangehill/Iseed/IseedCommand.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Orangehill/Iseed/IseedCommand.php b/src/Orangehill/Iseed/IseedCommand.php index 58517ec..937e601 100755 --- a/src/Orangehill/Iseed/IseedCommand.php +++ b/src/Orangehill/Iseed/IseedCommand.php @@ -39,7 +39,7 @@ public function __construct() */ public function handle() { - return $this->fire(); + $this->fire(); } /** @@ -134,8 +134,6 @@ public function fire() ); } } - - return; } /**