public function Container::isFrozen in Service Container 7
Same name and namespace in other branches
- 7.2 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\DependencyInjectionCode
public function isFrozen() {
return $this->parameterBag instanceof FrozenParameterBag;
}