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 ba8fae3 commit 1914636Copy full SHA for 1914636
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