Completed
Push — fix/db-port-handling-in-db-hel... ( aca916...e2cd1d )
by Christian
24s
created
src/N98/Util/Console/Helper/DatabaseHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -440,7 +440,7 @@
 block discarded – undo
440 440
             . ' '
441 441
             . '-u' . escapeshellarg($this->dbSettings['username'])
442 442
             . ' '
443
-            . (isset($this->dbSettings['port']) && is_numeric($this->dbSettings['port']) && (int)$this->dbSettings['port'] > 0
443
+            . (isset($this->dbSettings['port']) && is_numeric($this->dbSettings['port']) && (int) $this->dbSettings['port'] > 0
444 444
                 ? '-P' . escapeshellarg($this->dbSettings['port']) . ' ' : '')
445 445
             . (strlen($this->dbSettings['password'])
446 446
                 ? '--password=' . escapeshellarg($this->dbSettings['password']) . ' ' : '')
Please login to merge, or discard this patch.