[Config] don't throw on missing excluded paths

This commit is contained in:
Nicolas Grekas 2020-02-18 12:08:29 +01:00
parent 334f0205d0
commit 2f65a7a255
2 changed files with 8 additions and 1 deletions

View File

@ -110,7 +110,7 @@ abstract class FileLoader extends BaseFileLoader
$excludePrefix = null;
if ($excludePattern) {
$excludePattern = $parameterBag->unescapeValue($parameterBag->resolveValue($excludePattern));
foreach ($this->glob($excludePattern, true, $resource) as $path => $info) {
foreach ($this->glob($excludePattern, true, $resource, true) as $path => $info) {
if (null === $excludePrefix) {
$excludePrefix = $resource->getPrefix();
}

View File

@ -134,6 +134,13 @@ class FileLoaderTest extends TestCase
],
array_keys($container->getAliases())
);
$loader->registerClasses(
new Definition(),
'Symfony\Component\DependencyInjection\Tests\Fixtures\Prototype\\',
'Prototype/*',
'Prototype/NotExistingDir'
);
}
public function testNestedRegisterClasses()