1 | <?php |
||
11 | final class PaymentDescriptionProvider implements PaymentDescriptionProviderInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var TranslatorInterface |
||
15 | */ |
||
16 | private $translator; |
||
17 | |||
18 | /** |
||
19 | * @param TranslatorInterface $translator |
||
20 | */ |
||
21 | public function __construct(TranslatorInterface $translator) |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | public function getPaymentDescription(PaymentInterface $payment): string |
||
39 | } |
||
40 |