From 42a3a20dfc372f37c29003d7216fa0bc45ec00cd Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 2 Nov 2020 16:37:50 +0100 Subject: [PATCH] Fix phpcs --- htdocs/adherents/class/adherent_type.class.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/htdocs/adherents/class/adherent_type.class.php b/htdocs/adherents/class/adherent_type.class.php index 420ad95fca8..b5c701f2ad4 100644 --- a/htdocs/adherents/class/adherent_type.class.php +++ b/htdocs/adherents/class/adherent_type.class.php @@ -98,10 +98,10 @@ class AdherentType extends CommonObject public $mail_valid; /** @var string Email sent after recording a new subscription */ - public $mail_subscription; + public $mail_subscription = ''; /** @var string Email sent after resiliation */ - public $mail_resiliate; + public $mail_resiliate = ''; /** @var array Array of members */ public $members = array(); @@ -783,5 +783,4 @@ class AdherentType extends CommonObject return ''; } - }