We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e0baa0 commit 0136609Copy full SHA for 0136609
src/Tasks/Backup/DbDumperFactory.php
@@ -58,7 +58,9 @@ public static function createFromConnection(string $dbConnectionName): DbDumper
58
}
59
60
if (isset($dbConfig['port'])) {
61
- $dbDumper = $dbDumper->setPort($dbConfig['port']);
+ if (is_integer($dbConfig['port'])) {
62
+ $dbDumper = $dbDumper->setPort($dbConfig['port']);
63
+ }
64
65
66
if (isset($dbConfig['dump'])) {
0 commit comments