@@ -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(" |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | |
| 35 | 35 | $sessionManager = new TmuxSessionManager($sessionName); |
| 36 | 36 | |
| 37 | - if (! $sessionManager->sessionExists()) { |
|
| 37 | + if (!$sessionManager->sessionExists()) { |
|
| 38 | 38 | $this->error("❌ Session '{$sessionName}' does not exist"); |
| 39 | 39 | $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(" |