From 8358e410dcf210d2447b022f5bc1802be6a67e9e Mon Sep 17 00:00:00 2001 From: Boy132 Date: Sun, 8 Dec 2024 19:57:00 +0100 Subject: [PATCH] Move installer to correct namespace (#795) --- app/Http/Controllers/Auth/LoginController.php | 2 +- .../Installer/PanelInstaller.php | 14 +++++++------- .../Installer/Steps/CacheStep.php | 4 ++-- .../Installer/Steps/DatabaseStep.php | 4 ++-- .../Installer/Steps/EnvironmentStep.php | 4 ++-- .../Installer/Steps/QueueStep.php | 4 ++-- .../Installer/Steps/RequirementsStep.php | 2 +- .../Installer/Steps/SessionStep.php | 2 +- routes/base.php | 2 +- 9 files changed, 19 insertions(+), 19 deletions(-) rename app/{Filament/Pages => Livewire}/Installer/PanelInstaller.php (93%) rename app/{Filament/Pages => Livewire}/Installer/Steps/CacheStep.php (98%) rename app/{Filament/Pages => Livewire}/Installer/Steps/DatabaseStep.php (98%) rename app/{Filament/Pages => Livewire}/Installer/Steps/EnvironmentStep.php (95%) rename app/{Filament/Pages => Livewire}/Installer/Steps/QueueStep.php (96%) rename app/{Filament/Pages => Livewire}/Installer/Steps/RequirementsStep.php (98%) rename app/{Filament/Pages => Livewire}/Installer/Steps/SessionStep.php (96%) diff --git a/app/Http/Controllers/Auth/LoginController.php b/app/Http/Controllers/Auth/LoginController.php index ea2a595943..1501b6d66a 100644 --- a/app/Http/Controllers/Auth/LoginController.php +++ b/app/Http/Controllers/Auth/LoginController.php @@ -2,7 +2,7 @@ namespace App\Http\Controllers\Auth; -use App\Filament\Pages\Installer\PanelInstaller; +use App\Livewire\Installer\PanelInstaller; use Carbon\CarbonImmutable; use Illuminate\Http\RedirectResponse; use Illuminate\Support\Str; diff --git a/app/Filament/Pages/Installer/PanelInstaller.php b/app/Livewire/Installer/PanelInstaller.php similarity index 93% rename from app/Filament/Pages/Installer/PanelInstaller.php rename to app/Livewire/Installer/PanelInstaller.php index 27b657ada1..e37ac3fe8f 100644 --- a/app/Filament/Pages/Installer/PanelInstaller.php +++ b/app/Livewire/Installer/PanelInstaller.php @@ -1,14 +1,14 @@