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 e7184b5
Showing 1 changed file with 2 additions and 3 deletions.
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 e7184b5

Please sign in to comment.