You are here

public function Container::isFrozen in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Container.php \Symfony\Component\DependencyInjection\Container::isFrozen()

Returns true if the container parameter bag are frozen.

@api

Return value

bool true if the container parameter bag are frozen, false otherwise

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Container.php, line 117

Class

Container
Container is a dependency injection container.

Namespace

Symfony\Component\DependencyInjection

Code

public function isFrozen() {
  return $this->parameterBag instanceof FrozenParameterBag;
}