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 e880923 commit 458ab22Copy full SHA for 458ab22
src/Symfony/Component/DependencyInjection/Tests/Loader/XmlFileLoaderTest.php
@@ -612,7 +612,11 @@ public function testPrependExtensionConfig()
612
$loader->load('extensions/services1.xml');
613
614
$expected = [
615
- ['foo' => 'ping'],
+ [
616
+ 'foo' => 'ping',
617
+ 'another' => null,
618
+ 'another2' => '%project.parameter.foo%',
619
+ ],
620
['foo' => 'bar'],
621
];
622
$this->assertSame($expected, $container->getExtensionConfig('http://www.example.com/schema/project'));
0 commit comments