Method order

This commit is contained in:
Marcus Moore
2025-06-17 14:22:44 -07:00
parent cba45ece12
commit bffaf477ea
+7 -7
View File
@@ -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');
}
}