public function CheckReferenceValidityPassTest::testProcess in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/Tests/Compiler/CheckReferenceValidityPassTest.php \Symfony\Component\DependencyInjection\Tests\Compiler\CheckReferenceValidityPassTest::testProcess()
File
- vendor/
symfony/ dependency-injection/ Tests/ Compiler/ CheckReferenceValidityPassTest.php, line 83
Class
Namespace
Symfony\Component\DependencyInjection\Tests\CompilerCode
public function testProcess() {
$container = new ContainerBuilder();
$container
->register('a')
->addArgument(new Reference('b'));
$container
->register('b');
$this
->process($container);
}