Skip to content

Commit

Permalink
Merge pull request #1453 from hydephp/pass-through-settings-to-realti…
Browse files Browse the repository at this point in the history
…me-compiler

Fix command extending wrong base class
  • Loading branch information
caendesilva authored Nov 12, 2023
2 parents 01bc43f + 451124b commit ddd0c75
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/framework/src/Console/Commands/ServeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -22,7 +21,7 @@
*
* @see https://github.com/hydephp/realtime-compiler
*/
class ServeCommand extends ValidatingCommand
class ServeCommand extends Command
{
/** @var string */
protected $signature = 'serve
Expand Down

0 comments on commit ddd0c75

Please sign in to comment.