Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / translation / Formatter / MessageFormatterInterface.php
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
12 namespace Symfony\Component\Translation\Formatter;
13
14 /**
15  * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
16  * @author Abdellatif Ait boudad <a.aitboudad@gmail.com>
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      * @return string
28      */
29     public function format($message, $locale, array $parameters = array());
30 }