public function CheckCircularReferencesPassTest::testProcessIgnoresMethodCalls in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Compiler/CheckCircularReferencesPassTest.php \Symfony\Component\DependencyInjection\Tests\Compiler\CheckCircularReferencesPassTest::testProcessIgnoresMethodCalls()
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Tests/ Compiler/ CheckCircularReferencesPassTest.php, line 109
Class
Namespace
Symfony\Component\DependencyInjection\Tests\CompilerCode
public function testProcessIgnoresMethodCalls() {
$container = new ContainerBuilder();
$container
->register('a')
->addArgument(new Reference('b'));
$container
->register('b')
->addMethodCall('setA', array(
new Reference('a'),
));
$this
->process($container);
}