From bffaf477ea7bfb1809dd69522740a3bcfe0ecf11 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Tue, 17 Jun 2025 14:22:44 -0700 Subject: [PATCH] Method order --- app/Mail/CheckoutAcceptanceResponseMail.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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'); + } }