You are here

public function ContainerBuilderTest::testGetReturnsNullOnInactiveScope in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Tests/ContainerBuilderTest.php \Symfony\Component\DependencyInjection\Tests\ContainerBuilderTest::testGetReturnsNullOnInactiveScope()

@covers Symfony\Component\DependencyInjection\ContainerBuilder::get

File

vendor/symfony/dependency-injection/Tests/ContainerBuilderTest.php, line 147

Class

ContainerBuilderTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function testGetReturnsNullOnInactiveScope() {
  $builder = new ContainerBuilder();
  $builder
    ->register('foo', 'stdClass')
    ->setScope('request');
  $this
    ->assertNull($builder
    ->get('foo', ContainerInterface::NULL_ON_INVALID_REFERENCE));
}