Remove unused variable

This commit is contained in:
Eric Lippmann 2018-06-08 14:18:16 +02:00
parent 4b5cf47cce
commit f9af22e409
1 changed files with 0 additions and 3 deletions

View File

@ -50,15 +50,12 @@ class DbResourceForm extends Form
}
$offerPostgres = false;
$offerIbm = false;
$offerMysql = false;
$dbChoice = isset($formData['db']) ? $formData['db'] : key($dbChoices);
if ($dbChoice === 'pgsql') {
$offerPostgres = true;
} elseif ($dbChoice === 'mysql') {
$offerMysql = true;
} elseif ($dbChoice === 'ibm') {
$offerIbm = true;
}
$socketInfo = '';