You've already forked Atomcms-edit
chore: fix code style with Laravel Pint
This commit is contained in:
@@ -4,6 +4,7 @@ declare(strict_types=1);
|
||||
|
||||
namespace App\Services;
|
||||
|
||||
use App\Models\Miscellaneous\WebsiteSetting;
|
||||
use App\Services\Emulator\EmulatorBackupService;
|
||||
use App\Services\Emulator\EmulatorBuildService;
|
||||
use App\Services\Emulator\EmulatorJarService;
|
||||
@@ -17,11 +18,17 @@ use Illuminate\Support\Facades\Process;
|
||||
class EmulatorUpdateService
|
||||
{
|
||||
private readonly EmulatorStatusService $statusService;
|
||||
|
||||
private readonly EmulatorJarService $jarService;
|
||||
|
||||
private readonly EmulatorSourceService $sourceService;
|
||||
|
||||
private readonly EmulatorBuildService $buildService;
|
||||
|
||||
private readonly EmulatorSqlService $sqlService;
|
||||
|
||||
private readonly EmulatorBackupService $backupService;
|
||||
|
||||
private readonly SettingsService $settings;
|
||||
|
||||
public function __construct()
|
||||
@@ -217,9 +224,9 @@ class EmulatorUpdateService
|
||||
|
||||
public function resetInstalledDate(): void
|
||||
{
|
||||
\App\Models\Miscellaneous\WebsiteSetting::where('key', 'emulator_jar_installed_date')->delete();
|
||||
\App\Models\Miscellaneous\WebsiteSetting::where('key', 'emulator_source_commit')->delete();
|
||||
\App\Models\Miscellaneous\WebsiteSetting::where('key', 'emulator_source_date')->delete();
|
||||
WebsiteSetting::where('key', 'emulator_jar_installed_date')->delete();
|
||||
WebsiteSetting::where('key', 'emulator_source_commit')->delete();
|
||||
WebsiteSetting::where('key', 'emulator_source_date')->delete();
|
||||
}
|
||||
|
||||
public function clearAllLogs(): array
|
||||
|
||||
Reference in New Issue
Block a user