From e2f9e8de115518f07332e0989e229d1284740f8f Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Sun, 12 Nov 2023 16:14:30 +0100 Subject: [PATCH] Fix command extending wrong base class Fixes a mistake in https://github.com/hydephp/develop/pull/1450 --- packages/framework/src/Console/Commands/ServeCommand.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/framework/src/Console/Commands/ServeCommand.php b/packages/framework/src/Console/Commands/ServeCommand.php index 804151fdc0c..a576864477e 100644 --- a/packages/framework/src/Console/Commands/ServeCommand.php +++ b/packages/framework/src/Console/Commands/ServeCommand.php @@ -9,10 +9,9 @@ use Hyde\Facades\Config; use Illuminate\Support\Arr; use InvalidArgumentException; +use Hyde\Console\Concerns\Command; use Hyde\RealtimeCompiler\ConsoleOutput; use Illuminate\Support\Facades\Process; -use LaravelZero\Framework\Commands\Command; -use Hyde\Publications\Commands\ValidatingCommand; use function sprintf; use function class_exists; @@ -22,7 +21,7 @@ * * @see https://github.com/hydephp/realtime-compiler */ -class ServeCommand extends ValidatingCommand +class ServeCommand extends Command { /** @var string */ protected $signature = 'serve