From 9b0debfd088e688bd1523cd682b3397935b4793c Mon Sep 17 00:00:00 2001 From: Philippe GRAND Date: Sun, 10 Nov 2019 12:22:24 +0100 Subject: [PATCH] add some comment --- htdocs/website/class/website.class.php | 6 +++++- htdocs/website/class/websitepage.class.php | 9 ++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/htdocs/website/class/website.class.php b/htdocs/website/class/website.class.php index b8c412c40fb..a0b4d59d4e0 100644 --- a/htdocs/website/class/website.class.php +++ b/htdocs/website/class/website.class.php @@ -76,9 +76,13 @@ class Website extends CommonObject public $status; /** - * @var mixed + * @var integer|string date_creation */ public $date_creation; + + /** + * @var integer|string date_modification + */ public $date_modification; /** diff --git a/htdocs/website/class/websitepage.class.php b/htdocs/website/class/websitepage.class.php index bd2b18479ca..b41a2dfd19e 100644 --- a/htdocs/website/class/websitepage.class.php +++ b/htdocs/website/class/websitepage.class.php @@ -83,8 +83,15 @@ class WebsitePage extends CommonObject * @var int Status */ public $status; - + + /** + * @var integer|string date_creation + */ public $date_creation; + + /** + * @var integer|string date_modification + */ public $date_modification;