public function Container::getParameterBag

Gets the service container parameter bag.

@api

Return value

ParameterBagInterface A ParameterBagInterface instance

1 call to Container::getParameterBag()
ContainerBuilder::createService in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ContainerBuilder.php
Creates a service for a service definition.
1 method overrides Container::getParameterBag()
ProjectServiceContainer::getParameterBag in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services10.php
Gets the service container parameter bag.

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Container.php, line 128

Class

Container
Container is a dependency injection container.

Namespace

Symfony\Component\DependencyInjection

Code

public function getParameterBag() {
  return $this->parameterBag;
}