You are here

public function Container::leaveScope in Zircon Profile 8

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

Leaves the current scope, and re-enters the parent scope.

Parameters

string $name:

Overrides ContainerInterface::leaveScope

File

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

Class

Container
Provides a container optimized for Drupal's needs.

Namespace

Drupal\Component\DependencyInjection

Code

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