| 1 | <?php |
||
| 9 | class ContactNameFormatter |
||
| 10 | { |
||
| 11 | /** @var NameFormatter */ |
||
| 12 | protected $nameFormatter; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param NameFormatter $nameFormatter |
||
| 16 | */ |
||
| 17 | public function __construct(NameFormatter $nameFormatter) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param Contact $contact |
||
| 24 | * @param string|null $locale |
||
| 25 | * |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function format(Contact $contact, $locale = null) |
||
| 36 | } |
||
| 37 |