File "ParameterBagInterface.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/mailpoet/vendor-prefixed/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php
File size: 719 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Symfony\Component\DependencyInjection\ParameterBag;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Symfony\Component\DependencyInjection\Exception\LogicException;
use MailPoetVendor\Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException;
interface ParameterBagInterface
{
 public function clear();
 public function add(array $parameters);
 public function all();
 public function get(string $name);
 public function remove(string $name);
 public function set(string $name, $value);
 public function has(string $name);
 public function resolve();
 public function resolveValue($value);
 public function escapeValue($value);
 public function unescapeValue($value);
}