public function ContainerTest::getInvalidParentScopes

File

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

Class

ContainerTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function getInvalidParentScopes() {
  return array(
    array(
      ContainerInterface::SCOPE_PROTOTYPE,
    ),
    array(
      'bar',
    ),
  );
}