You are here

public function Container::addScope in Zircon Profile 8.0

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

Adds a scope to the container.

Parameters

ScopeInterface $scope:

Overrides ContainerInterface::addScope

File

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

Class

Container
Provides a container optimized for Drupal's needs.

Namespace

Drupal\Component\DependencyInjection

Code

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