| Name | Size | Mode | Actions |
|---|---|---|---|
| ContainerBag.php | 1125 | 0644 | editdlrm |
| ContainerBagInterface.php | 1359 | 0644 | editdlrm |
| EnvPlaceholderParameterBag.php | 5030 | 0644 | editdlrm |
| FrozenParameterBag.php | 1606 | 0644 | editdlrm |
| ParameterBag.php | 7762 | 0644 | editdlrm |
| ParameterBagInterface.php | 2565 | 0644 | editdlrm |
/usr/share/php/Symfony/Component/DependencyInjection/ParameterBag/ContainerBagInterface.php (1359B)
*/ interface ContainerBagInterface extends ContainerInterface { /** * Gets the service container parameters. * * @return array */ public function all(); /** * Replaces parameter placeholders (%name%) by their values. * * @param mixed $value A value * * @throws ParameterNotFoundException if a placeholder references a parameter that does not exist */ public function resolveValue($value); /** * Escape parameter placeholders %. * * @param mixed $value * * @return mixed */ public function escapeValue($value); /** * Unescape parameter placeholders %. * * @param mixed $value * * @return mixed */ public function unescapeValue($value); }