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.
2 parents c3c5927 + 3c4f02c commit e581385Copy full SHA for e581385
setup/src/Magento/Setup/Model/ConfigOptionsList/DriverOptions.php
@@ -46,6 +46,6 @@ public function getDriverOptions(array $options): array
46
*/
47
private function optionExists($options, $driverOptionKey): bool
48
{
49
- return $options[$driverOptionKey] === false || !empty($options[$driverOptionKey]);
+ return isset($options[$driverOptionKey]) && ($options[$driverOptionKey] === false || !empty($options[$driverOptionKey]));
50
}
51
0 commit comments