| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function sendConfirmationEmail(OrderInterface $order): void |
||
| 31 | { |
||
| 32 | $this->emailSender->send( |
||
| 33 | Emails::ORDER_CONFIRMATION_RESENT, |
||
| 34 | [$order->getCustomer()->getEmail()], |
||
| 35 | [ |
||
| 36 | 'order' => $order, |
||
| 37 | 'channel' => $order->getChannel(), |
||
| 38 | 'localeCode' => $order->getLocaleCode(), |
||
| 39 | ] |
||
| 40 | ); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |