mailpoet
/
vendor-prefixed
/
symfony
/
dependency-injection
/
ParameterBag
/
ContainerBagInterface.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
ContainerBagInterface.php
13 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\DependencyInjection\ParameterBag; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Psr\Container\ContainerInterface; |
| 5 | use MailPoetVendor\Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException; |
| 6 | interface ContainerBagInterface extends ContainerInterface |
| 7 | { |
| 8 | public function all(); |
| 9 | public function resolveValue($value); |
| 10 | public function escapeValue($value); |
| 11 | public function unescapeValue($value); |
| 12 | } |
| 13 |