public function CheckReferenceValidityPassTest::testProcessIgnoresScopeWideningIfNonStrictReference 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::testProcessIgnoresScopeWideningIfNonStrictReference()
File
- vendor/symfony/ dependency-injection/ Tests/ Compiler/ CheckReferenceValidityPassTest.php, line 22 
Class
Namespace
Symfony\Component\DependencyInjection\Tests\CompilerCode
public function testProcessIgnoresScopeWideningIfNonStrictReference() {
  $container = new ContainerBuilder();
  $container
    ->register('a')
    ->addArgument(new Reference('b', ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE, false));
  $container
    ->register('b')
    ->setScope('prototype');
  $this
    ->process($container);
}