You are here

public function CheckReferenceValidityPassTest::testProcessIgnoresCrossScopeHierarchyReferenceIfNotStrict in Zircon Profile 8.0

Same name and namespace in other branches
  1. 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

CheckReferenceValidityPassTest

Namespace

Symfony\Component\DependencyInjection\Tests\Compiler

Code

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);
}