diff --git a/app/Mail/CheckoutAcceptanceResponseMail.php b/app/Mail/CheckoutAcceptanceResponseMail.php index a5d6991b20..fba6dd3de2 100644 --- a/app/Mail/CheckoutAcceptanceResponseMail.php +++ b/app/Mail/CheckoutAcceptanceResponseMail.php @@ -60,13 +60,6 @@ class CheckoutAcceptanceResponseMail extends Mailable ); } - private function introduction(): string - { - return $this->wasAccepted - ? trans('mail.following_accepted') - : trans('mail.following_declined'); - } - /** * Get the attachments for the message. * @@ -76,4 +69,11 @@ class CheckoutAcceptanceResponseMail extends Mailable { return []; } + + private function introduction(): string + { + return $this->wasAccepted + ? trans('mail.following_accepted') + : trans('mail.following_declined'); + } }