Passed
Push — master ( b35587...a9795a )
by Darko
10:39
created
app/Services/Tmux/TmuxLayoutBuilder.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     protected function buildFullLayout(): bool
41 41
     {
42 42
         // Window 0: Monitor + Binaries + Backfill + Releases
43
-        if (! $this->sessionManager->createSession('Monitor')) {
43
+        if (!$this->sessionManager->createSession('Monitor')) {
44 44
             return false;
45 45
         }
46 46
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     protected function buildBasicLayout(): bool
94 94
     {
95 95
         // Window 0: Monitor + Releases
96
-        if (! $this->sessionManager->createSession('Monitor')) {
96
+        if (!$this->sessionManager->createSession('Monitor')) {
97 97
             return false;
98 98
         }
99 99
 
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     protected function buildStrippedLayout(): bool
139 139
     {
140 140
         // Window 0: Monitor + Sequential
141
-        if (! $this->sessionManager->createSession('Monitor')) {
141
+        if (!$this->sessionManager->createSession('Monitor')) {
142 142
             return false;
143 143
         }
144 144
 
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
             $this->paneManager->createWindow($windowIndex, 'redis');
243 243
 
244 244
             // Check if custom args provided for simple redis-cli output
245
-            if (! empty($redisArgs) && $redisArgs !== 'NULL') {
245
+            if (!empty($redisArgs) && $redisArgs !== 'NULL') {
246 246
                 $this->paneManager->respawnPane("{$windowIndex}.0", "watch -n{$refreshInterval} -c 'redis-cli -h {$redisHost} -p {$redisPort} {$redisArgs}'");
247 247
             } else {
248 248
                 // Use modern visual monitoring script
Please login to merge, or discard this patch.