oont-contents/plugins/mailpoet/vendor-prefixed/symfony/dependency-injection/ParameterBag/ContainerBagInterface.php
2025-02-08 15:10:23 +01:00

12 lines
466 B
PHP

<?php
namespace MailPoetVendor\Symfony\Component\DependencyInjection\ParameterBag;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Psr\Container\ContainerInterface;
use MailPoetVendor\Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException;
interface ContainerBagInterface extends ContainerInterface
{
public function all();
public function resolveValue($value);
public function escapeValue($value);
public function unescapeValue($value);
}