Remove unused variable
This commit is contained in:
parent
4b5cf47cce
commit
f9af22e409
|
@ -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 = '';
|
||||
|
|
Loading…
Reference in New Issue