You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Symfony/Component/DependencyInjection/CHANGELOG.md
+2
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@ CHANGELOG
8
8
* Add argument `$prepend` to `ContainerConfigurator::extension()` to prepend the configuration instead of appending it
9
9
* Have `ServiceLocator` implement `ServiceCollectionInterface`
10
10
* Add `#[Lazy]` attribute as shortcut for `#[Autowire(lazy: [bool|string])]` and `#[Autoconfigure(lazy: [bool|string])]`
11
+
* Add argument `$prepend` to `FileLoader::construct()` to prepend loaded configuration instead of appending it
12
+
*[BC BREAK] When used in the `prependExtension()` methods, the `ContainerConfigurator::import()` method now prepends the configuration instead of appending it
thrownewInvalidArgumentException(sprintf('There is no extension able to load the configuration for "%s" (in "%s"). Looked for namespace "%s", found "%s".', $node->tagName, $file, $node->namespaceURI, $extensionNamespaces ? implode('", "', $extensionNamespaces) : 'none'));
814
814
}
@@ -830,8 +830,10 @@ private function loadFromExtensions(\DOMDocument $xml): void
thrownewInvalidArgumentException(sprintf('There is no extension able to load the configuration for "%s" (in "%s"). Looked for namespace "%s", found "%s".', $namespace, $file, $namespace, $extensionNamespaces ? sprintf('"%s"', implode('", "', $extensionNamespaces)) : 'none'));
808
808
}
@@ -941,12 +941,14 @@ private function loadFromExtensions(array $content): void
0 commit comments