@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | $colorCli = new ColorCLI; |
| 18 | 18 | |
| 19 | -if (! isset($argv[1])) { |
|
| 19 | +if (!isset($argv[1])) { |
|
| 20 | 20 | $colorCli->error('This script is not intended to be run manually, it is called from Multiprocessing.'); |
| 21 | 21 | exit(1); |
| 22 | 22 | } |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | |
| 30 | 30 | switch ($type) { |
| 31 | 31 | case 'standard': |
| 32 | - if ($guidChar === null || $maxPerRun === null || ! is_numeric($maxPerRun)) { |
|
| 32 | + if ($guidChar === null || $maxPerRun === null || !is_numeric($maxPerRun)) { |
|
| 33 | 33 | $colorCli->error('Invalid arguments for standard type'); |
| 34 | 34 | exit(1); |
| 35 | 35 | } |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | break; |
| 39 | 39 | |
| 40 | 40 | case 'predbft': |
| 41 | - if (! isset($maxPerRun) || ! is_numeric($maxPerRun) || ! isset($thread) || ! is_numeric($thread)) { |
|
| 41 | + if (!isset($maxPerRun) || !is_numeric($maxPerRun) || !isset($thread) || !is_numeric($thread)) { |
|
| 42 | 42 | $colorCli->error('Invalid arguments for predbft type'); |
| 43 | 43 | exit(1); |
| 44 | 44 | } |
@@ -40,7 +40,7 @@ discard block |
||
| 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 | |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | protected function buildBasicLayout(): bool |
| 83 | 83 | { |
| 84 | 84 | // Window 0: Monitor + Releases |
| 85 | - if (! $this->sessionManager->createSession('Monitor')) { |
|
| 85 | + if (!$this->sessionManager->createSession('Monitor')) { |
|
| 86 | 86 | return false; |
| 87 | 87 | } |
| 88 | 88 | |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | protected function buildStrippedLayout(): bool |
| 117 | 117 | { |
| 118 | 118 | // Window 0: Monitor + Sequential |
| 119 | - if (! $this->sessionManager->createSession('Monitor')) { |
|
| 119 | + if (!$this->sessionManager->createSession('Monitor')) { |
|
| 120 | 120 | return false; |
| 121 | 121 | } |
| 122 | 122 | |