You are here

public function Container::isScopeActive in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/dependency-injection/Container.php \Symfony\Component\DependencyInjection\Container::isScopeActive()
  2. 8 core/lib/Drupal/Component/DependencyInjection/Container.php \Drupal\Component\DependencyInjection\Container::isScopeActive()
Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Component/DependencyInjection/Container.php \Drupal\Component\DependencyInjection\Container::isScopeActive()

Determines whether the given scope is currently active.

It does however not check if the scope actually exists.

Parameters

string $name:

Return value

bool

Overrides ContainerInterface::isScopeActive

File

core/lib/Drupal/Component/DependencyInjection/Container.php, line 615
Contains \Drupal\Component\DependencyInjection\Container.

Class

Container
Provides a container optimized for Drupal's needs.

Namespace

Drupal\Component\DependencyInjection

Code

public function isScopeActive($name) {
  throw new \BadMethodCallException(sprintf("'%s' is not supported by Drupal 8.", __FUNCTION__));
}