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 55c58a6 + fa59ef9 commit fc488e8Copy full SHA for fc488e8
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