File "TranslatorInterface.php"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/mailpoet/vendor-prefixed/symfony/translation/TranslatorInterface.php
File size: 564 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Symfony\Component\Translation;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Symfony\Component\Translation\Exception\InvalidArgumentException;
use MailPoetVendor\Symfony\Contracts\Translation\LocaleAwareInterface;
interface TranslatorInterface extends LocaleAwareInterface
{
 public function trans($id, array $parameters = [], $domain = null, $locale = null);
 public function transChoice($id, $number, array $parameters = [], $domain = null, $locale = null);
 public function setLocale($locale);
 public function getLocale();
}