| Name | Size | Mode | Actions |
|---|---|---|---|
| Traits/ | - | 0755 | rm |
| AbstractConfigurator.php | 3937 | 0644 | editdlrm |
| AbstractServiceConfigurator.php | 2992 | 0644 | editdlrm |
| AliasConfigurator.php | 726 | 0644 | editdlrm |
| ClosureReferenceConfigurator.php | 377 | 0644 | editdlrm |
| ContainerConfigurator.php | 6317 | 0644 | editdlrm |
| DefaultsConfigurator.php | 1968 | 0644 | editdlrm |
| EnvConfigurator.php | 3838 | 0644 | editdlrm |
| InlineServiceConfigurator.php | 1027 | 0644 | editdlrm |
| InstanceofConfigurator.php | 1242 | 0644 | editdlrm |
| ParametersConfigurator.php | 1099 | 0644 | editdlrm |
| PrototypeConfigurator.php | 2535 | 0644 | editdlrm |
| ReferenceConfigurator.php | 1444 | 0644 | editdlrm |
| ServiceConfigurator.php | 2044 | 0644 | editdlrm |
| ServicesConfigurator.php | 7067 | 0644 | editdlrm |
/usr/share/php/Symfony/Component/DependencyInjection/Loader/Configurator/ParametersConfigurator.php (1099B)
*/ class ParametersConfigurator extends AbstractConfigurator { public const FACTORY = 'parameters'; private $container; public function __construct(ContainerBuilder $container) { $this->container = $container; } /** * Creates a parameter. * * @return $this */ final public function set(string $name, $value): self { $this->container->setParameter($name, static::processValue($value, true)); return $this; } /** * Creates a parameter. * * @return $this */ final public function __invoke(string $name, $value): self { return $this->set($name, $value); } }