diff --git a/core/lib/Drupal/Core/Config/InstallStorage.php b/core/lib/Drupal/Core/Config/InstallStorage.php index 5d86271..3f2f7ae 100644 --- a/core/lib/Drupal/Core/Config/InstallStorage.php +++ b/core/lib/Drupal/Core/Config/InstallStorage.php @@ -198,9 +198,9 @@ public function getComponentNames(array $list) { // extensions was already obtained through an ExtensionDiscovery scan. $directory = $this->getComponentFolder($extension_object); if (is_dir($directory)) { - // glob() directly calls into libc glob(), which is not aware of PHP stream - // wrappers. Same for \GlobIterator (which additionally requires an absolute - // realpath() on Windows). + // glob() directly calls into libc glob(), which is not aware of PHP + // stream wrappers. Same for \GlobIterator (which additionally requires + // an absolute realpath() on Windows). // @see https://github.com/mikey179/vfsStream/issues/2 $files = scandir($directory); @@ -225,9 +225,9 @@ public function getCoreNames() { $folders = array(); $directory = $this->getCoreFolder(); if (is_dir($directory)) { - // glob() directly calls into libc glob(), which is not aware of PHP stream - // wrappers. Same for \GlobIterator (which additionally requires an absolute - // realpath() on Windows). + // glob() directly calls into libc glob(), which is not aware of PHP + // stream wrappers. Same for \GlobIterator (which additionally requires an + // absolute realpath() on Windows). // @see https://github.com/mikey179/vfsStream/issues/2 $files = scandir($directory);