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 010156f commit fa59ef9Copy full SHA for fa59ef9
setup/src/Magento/Setup/Model/PhpInformation.php
@@ -45,7 +45,9 @@ public function getRequiredMinimumXDebugNestedLevel()
45
public function getCurrent()
46
{
47
if (!$this->current) {
48
- $this->current = array_map('strtolower', get_loaded_extensions());
+ $this->current = array_map(function ($ext) {
49
+ return str_replace(' ', '-', strtolower($ext));
50
+ }, get_loaded_extensions());
51
}
52
return $this->current;
53
0 commit comments