8 lines
195 B
PHP
8 lines
195 B
PHP
<?php
|
|
namespace MailPoetVendor\Symfony\Contracts\Translation;
|
|
if (!defined('ABSPATH')) exit;
|
|
interface LocaleAwareInterface
|
|
{
|
|
public function setLocale($locale);
|
|
public function getLocale();
|
|
}
|