mailpoet
/
vendor-prefixed
/
symfony
/
dependency-injection
/
ParameterBag
/
ParameterBagInterface.php
ContainerBag.php
4 years ago
ContainerBagInterface.php
4 years ago
EnvPlaceholderParameterBag.php
4 years ago
FrozenParameterBag.php
4 years ago
ParameterBag.php
4 years ago
ParameterBagInterface.php
4 years ago
index.php
3 years ago
ParameterBagInterface.php
20 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\DependencyInjection\ParameterBag; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Symfony\Component\DependencyInjection\Exception\LogicException; |
| 5 | use MailPoetVendor\Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException; |
| 6 | interface ParameterBagInterface |
| 7 | { |
| 8 | public function clear(); |
| 9 | public function add(array $parameters); |
| 10 | public function all(); |
| 11 | public function get(string $name); |
| 12 | public function remove(string $name); |
| 13 | public function set(string $name, $value); |
| 14 | public function has(string $name); |
| 15 | public function resolve(); |
| 16 | public function resolveValue($value); |
| 17 | public function escapeValue($value); |
| 18 | public function unescapeValue($value); |
| 19 | } |
| 20 |