| 1 | <?php |
||
| 20 | class BasicFormatter implements FormatterInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * |
||
| 24 | * Format message |
||
| 25 | * |
||
| 26 | * @param string $locale |
||
| 27 | * |
||
| 28 | * @param string $string |
||
| 29 | * |
||
| 30 | * @param array $tokens_values |
||
| 31 | * |
||
| 32 | * @return string A string replaced with the token values |
||
| 33 | * |
||
| 34 | */ |
||
| 35 | 1 | public function format($locale, $string, array $tokens_values) |
|
| 47 | } |
||
| 48 |