Skip to content

Commit e2f9e8d

Browse files
committed
Fix command extending wrong base class
Fixes a mistake in #1450
1 parent 1b4b1a8 commit e2f9e8d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/framework/src/Console/Commands/ServeCommand.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
use Hyde\Facades\Config;
1010
use Illuminate\Support\Arr;
1111
use InvalidArgumentException;
12+
use Hyde\Console\Concerns\Command;
1213
use Hyde\RealtimeCompiler\ConsoleOutput;
1314
use Illuminate\Support\Facades\Process;
14-
use LaravelZero\Framework\Commands\Command;
15-
use Hyde\Publications\Commands\ValidatingCommand;
1615

1716
use function sprintf;
1817
use function class_exists;
@@ -22,7 +21,7 @@
2221
*
2322
* @see https://github.com/hydephp/realtime-compiler
2423
*/
25-
class ServeCommand extends ValidatingCommand
24+
class ServeCommand extends Command
2625
{
2726
/** @var string */
2827
protected $signature = 'serve

0 commit comments

Comments
 (0)