From 45a27e4bf6b2ad4134c7ccb0bec0c0f403d44798 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 9 Oct 2023 09:55:38 +0200 Subject: [PATCH] docs: corrected phpdocs on TaskMail params --- app/Mail/TaskMail.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/Mail/TaskMail.php b/app/Mail/TaskMail.php index 700552006..fe7e6d134 100644 --- a/app/Mail/TaskMail.php +++ b/app/Mail/TaskMail.php @@ -20,12 +20,9 @@ class TaskMail extends Mailable /** * Create a new message instance. * - * @param Endorsement $endorsement + * @param string $mailSubject + * @param User $user * @param array $textLines an array of markdown lines to add - * @param string $contactMail optional contact e-mail to put in footer - * @param string $actionUrl optinal action button url - * @param string $actionText optional action button text - * @param string $actionColor optional bootstrap button color override * @return void */ public function __construct(string $mailSubject, User $user, array $textLines)