Skip to content

Commit

Permalink
Rename added console class
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Nov 9, 2023
1 parent 20c9d96 commit 5acdb3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/framework/src/Console/Commands/ServeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Hyde\Facades\Config;
use Illuminate\Support\Str;
use Illuminate\Support\Carbon;
use Hyde\RealtimeCompiler\Console;
use Hyde\RealtimeCompiler\ConsoleOutput;
use Illuminate\Support\Facades\Process;
use LaravelZero\Framework\Commands\Command;

Expand Down Expand Up @@ -180,6 +180,6 @@ protected function getFancyOutputHandler(): Closure

protected function useBasicOutput(): bool
{
return $this->option('no-ansi') || ! class_exists(Console::class);
return $this->option('no-ansi') || ! class_exists(ConsoleOutput::class);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Hyde\RealtimeCompiler;

class Console
class ConsoleOutput
{
//
}

0 comments on commit 5acdb3b

Please sign in to comment.