Exception
1 year ago
Provider
1 year ago
Test
1 year ago
Util
1 year ago
DataCollectorTranslator.php
1 year ago
IdentityTranslator.php
1 year ago
LoggingTranslator.php
1 year ago
MessageCatalogue.php
1 year ago
MessageCatalogueInterface.php
1 year ago
MetadataAwareInterface.php
1 year ago
PseudoLocalizationTranslator.php
1 year ago
TranslatableMessage.php
1 year ago
Translator.php
1 year ago
TranslatorBag.php
1 year ago
TranslatorBagInterface.php
1 year ago
index.php
3 years ago
MetadataAwareInterface.php
10 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\Translation; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | interface MetadataAwareInterface |
| 5 | { |
| 6 | public function getMetadata(string $key = '', string $domain = 'messages'); |
| 7 | public function setMetadata(string $key, $value, string $domain = 'messages'); |
| 8 | public function deleteMetadata(string $key = '', string $domain = 'messages'); |
| 9 | } |
| 10 |