| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class SendFeedbackHandler implements MessageHandlerInterface |
||
| 16 | { |
||
| 17 | private Mailer $mailer; |
||
| 18 | private TranslatorInterface $translator; |
||
| 19 | |||
| 20 | public function __construct(Mailer $mailer, TranslatorInterface $translator) |
||
| 21 | { |
||
| 22 | $this->mailer = $mailer; |
||
| 23 | $this->translator = $translator; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function __invoke(SendFeedback $sendFeedback): void |
||
| 42 | } |
||
| 43 | } |
||
| 44 |