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 hydephp/develop@ddd0c75
  • Loading branch information
github-actions committed Nov 12, 2023
1 parent 5d162ac commit 72f51b1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions 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 72f51b1

Please sign in to comment.