@@ -34,7 +34,7 @@ |
||
| 34 | 34 | $this->info(' |
@@ -87,16 +87,16 @@ discard block |
||
| 87 | 87 | { |
| 88 | 88 | $steps = 3; // prepare, finalize, cleanup |
| 89 | 89 | |
| 90 | - if (! $this->option('skip-git')) { |
|
| 90 | + if (!$this->option('skip-git')) { |
|
| 91 | 91 | $steps++; |
| 92 | 92 | } |
| 93 | - if (! $this->option('skip-composer')) { |
|
| 93 | + if (!$this->option('skip-composer')) { |
|
| 94 | 94 | $steps++; |
| 95 | 95 | } |
| 96 | - if (! $this->option('skip-npm')) { |
|
| 96 | + if (!$this->option('skip-npm')) { |
|
| 97 | 97 | $steps += 2; |
| 98 | 98 | } // install + build |
| 99 | - if (! $this->option('skip-db')) { |
|
| 99 | + if (!$this->option('skip-db')) { |
|
| 100 | 100 | $steps++; |
| 101 | 101 | } |
| 102 | 102 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | |
| 115 | 115 | // Check if app is in maintenance mode |
| 116 | 116 | $this->wasInMaintenance = App::isDownForMaintenance(); |
| 117 | - if (! $this->wasInMaintenance) { |
|
| 117 | + if (!$this->wasInMaintenance) { |
|
| 118 | 118 | $this->call('down', [ |
| 119 | 119 | '--render' => 'errors::maintenance', |
| 120 | 120 | '--retry' => 120, |
@@ -138,22 +138,22 @@ discard block |
||
| 138 | 138 | private function executeUpdateSteps(): void |
| 139 | 139 | { |
| 140 | 140 | // Git operations |
| 141 | - if (! $this->option('skip-git')) { |
|
| 141 | + if (!$this->option('skip-git')) { |
|
| 142 | 142 | $this->performGitUpdate(); |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | // Composer operations |
| 146 | - if (! $this->option('skip-composer')) { |
|
| 146 | + if (!$this->option('skip-composer')) { |
|
| 147 | 147 | $this->performComposerUpdate(); |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | // Database migrations |
| 151 | - if (! $this->option('skip-db')) { |
|
| 151 | + if (!$this->option('skip-db')) { |
|
| 152 | 152 | $this->performDatabaseUpdate(); |
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | // NPM operations |
| 156 | - if (! $this->option('skip-npm')) { |
|
| 156 | + if (!$this->option('skip-npm')) { |
|
| 157 | 157 | $this->performNpmOperations(); |
| 158 | 158 | } |
| 159 | 159 | |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | { |
| 217 | 217 | // Check if package.json has changed |
| 218 | 218 | $packageLockExists = File::exists(base_path('package-lock.json')); |
| 219 | - $shouldInstall = ! $packageLockExists || $this->option('force'); |
|
| 219 | + $shouldInstall = !$packageLockExists || $this->option('force'); |
|
| 220 | 220 | |
| 221 | 221 | if ($shouldInstall) { |
| 222 | 222 | $this->info(' |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | $this->layoutBuilder = new TmuxLayoutBuilder($this->sessionManager); |
| 56 | 56 | |
| 57 | 57 | // Check if tmux is installed |
| 58 | - if (! $this->checkTmuxInstalled()) { |
|
| 58 | + if (!$this->checkTmuxInstalled()) { |
|
| 59 | 59 | $this->error('❌ tmux is not installed'); |
| 60 | 60 | |
| 61 | 61 | return Command::FAILURE; |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | |
| 64 | 64 | // Check if session already exists |
| 65 | 65 | if ($this->sessionManager->sessionExists()) { |
| 66 | - if (! $this->option('force')) { |
|
| 66 | + if (!$this->option('force')) { |
|
| 67 | 67 | $this->error("❌ Session '{$sessionName}' already exists"); |
| 68 | 68 | if ($this->confirm('Would you like to restart it?', false)) { |
| 69 | 69 | $this->call('tmux:stop', ['--session' => $sessionName]); |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | $this->info(" |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | $this->tmuxOutput = new TmuxOutput; |
| 65 | 65 | |
| 66 | 66 | // Verify session exists |
| 67 | - if (! $this->sessionManager->sessionExists()) { |
|
| 67 | + if (!$this->sessionManager->sessionExists()) { |
|
| 68 | 68 | $this->error("❌ Tmux session '{$sessionName}' does not exist."); |
| 69 | 69 | $this->info(" |
@@ -42,14 +42,14 @@ |
||
| 42 | 42 | $this->info(' |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | use GuzzleHttp\Client; |
| 12 | 12 | use GuzzleHttp\Exception\RequestException; |
| 13 | 13 | |
| 14 | -if (! function_exists('getRawHtmlWithAgeVerification')) { |
|
| 14 | +if (!function_exists('getRawHtmlWithAgeVerification')) { |
|
| 15 | 15 | /** |
| 16 | 16 | * Get raw HTML with automatic age verification handling |
| 17 | 17 | * |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | } |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | -if (! function_exists('initializeAdultSiteCookies')) { |
|
| 103 | +if (!function_exists('initializeAdultSiteCookies')) { |
|
| 104 | 104 | /** |
| 105 | 105 | * Initialize age verification cookies for all adult sites |
| 106 | 106 | * Run this once during application setup |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | } |
| 152 | 152 | } |
| 153 | 153 | |
| 154 | -if (! function_exists('getAdultSiteCookieStats')) { |
|
| 154 | +if (!function_exists('getAdultSiteCookieStats')) { |
|
| 155 | 155 | /** |
| 156 | 156 | * Get statistics about stored adult site cookies |
| 157 | 157 | * |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | } |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | -if (! function_exists('clearAdultSiteCookies')) { |
|
| 168 | +if (!function_exists('clearAdultSiteCookies')) { |
|
| 169 | 169 | /** |
| 170 | 170 | * Clear all stored adult site cookies |
| 171 | 171 | * |