| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class BasicMailSubjectRenderer implements MailSubjectRendererInterface { |
||
| 13 | |||
| 14 | private $translator; |
||
| 15 | private $subjectKey; |
||
| 16 | |||
| 17 | 21 | public function __construct( TranslatorInterface $translator, string $subjectKey ) { |
|
| 20 | 21 | } |
|
| 21 | |||
| 22 | 12 | public function render( array $templateArguments = [] ): string { |
|
| 27 |