Skip to content

Commit

Permalink
Reorder class properties
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Nov 11, 2023
1 parent 30fdc58 commit 92a2356
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/realtime-compiler/src/ConsoleOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

class ConsoleOutput
{
protected SymfonyOutput $output;
protected bool $verbose;
protected SymfonyOutput $output;

public function __construct(bool $verbose = false, ?SymfonyOutput $output = null)
{
Expand Down
5 changes: 2 additions & 3 deletions packages/realtime-compiler/src/Http/DashboardController.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ class DashboardController

protected Request $request;
protected ConsoleOutput $console;
protected bool $isAsync = false;
protected JsonResponse $response;

protected bool $isAsync = false;
protected array $flashes = [];

protected static array $tips = [
Expand All @@ -51,8 +52,6 @@ class DashboardController
'The dashboard update your project files. You can disable this by setting `server.dashboard.interactive` to `false` in `config/hyde.php`.',
];

protected JsonResponse $response;

public function __construct()
{
$this->title = config('hyde.name').' - Dashboard';
Expand Down

0 comments on commit 92a2356

Please sign in to comment.