From 628fd216adce2fff3bbf136f15c1435e5cf670c6 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Thu, 27 Apr 2017 11:56:23 +1200 Subject: [PATCH] PHPDoc fixes --- src/Forms/DatetimeField.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/Forms/DatetimeField.php b/src/Forms/DatetimeField.php index e97679927..a5520bdc6 100644 --- a/src/Forms/DatetimeField.php +++ b/src/Forms/DatetimeField.php @@ -107,6 +107,9 @@ class DatetimeField extends TextField return $attributes; } + /** + * @inheritDoc + */ public function getSchemaDataDefaults() { $defaults = parent::getSchemaDataDefaults(); @@ -120,16 +123,26 @@ class DatetimeField extends TextField ]); } + /** + * @inheritDoc + */ public function Type() { return 'text datetime'; } + /** + * @return bool + */ public function getHTML5() { return $this->html5; } + /** + * @param $bool + * @return $this + */ public function setHTML5($bool) { $this->html5 = $bool;