public function ContainerTest::getBuiltInScopes

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/ContainerTest.php, line 465

Class

ContainerTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function getBuiltInScopes() {
  return array(
    array(
      ContainerInterface::SCOPE_CONTAINER,
    ),
    array(
      ContainerInterface::SCOPE_PROTOTYPE,
    ),
  );
}