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 176ba2b + 1914636 commit 3c4f02cCopy full SHA for 3c4f02c
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