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