IntlFormatter.php
2 years ago
IntlFormatterInterface.php
2 years ago
MessageFormatter.php
1 month ago
MessageFormatterInterface.php
1 month ago
MessageFormatterInterface.php
29 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | */ |
| 11 | namespace IAWPSCOPED\Symfony\Component\Translation\Formatter; |
| 12 | |
| 13 | /** |
| 14 | * @author Guilherme Blanco <guilhermeblanco@hotmail.com> |
| 15 | * @author Abdellatif Ait boudad <a.aitboudad@gmail.com> |
| 16 | * @internal |
| 17 | */ |
| 18 | interface MessageFormatterInterface |
| 19 | { |
| 20 | /** |
| 21 | * Formats a localized message pattern with given arguments. |
| 22 | * |
| 23 | * @param string $message The message (may also be an object that can be cast to string) |
| 24 | * @param string $locale The message locale |
| 25 | * @param array $parameters An array of parameters for the message |
| 26 | */ |
| 27 | public function format(string $message, string $locale, array $parameters = []) : string; |
| 28 | } |
| 29 |