public function ContainerInterface::setParameter in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/ContainerInterface.php \Symfony\Component\DependencyInjection\ContainerInterface::setParameter()
Sets a parameter.
Parameters
string $name The parameter name:
mixed $value The parameter value:
1 call to ContainerInterface::setParameter()
- ContainerBuilder::setParameter in core/
lib/ Drupal/ Core/ DependencyInjection/ ContainerBuilder.php - Sets a parameter.
3 methods override ContainerInterface::setParameter()
- Container::setParameter in vendor/
symfony/ dependency-injection/ Container.php - Sets a parameter.
- Container::setParameter in core/
lib/ Drupal/ Component/ DependencyInjection/ Container.php - Sets a parameter.
- ContainerBuilder::setParameter in core/
lib/ Drupal/ Core/ DependencyInjection/ ContainerBuilder.php - Sets a parameter.
File
- vendor/
symfony/ dependency-injection/ ContainerInterface.php, line 91
Class
- ContainerInterface
- ContainerInterface is the interface implemented by service container classes.
Namespace
Symfony\Component\DependencyInjectionCode
public function setParameter($name, $value);