From 276427e3df10c68c9889ac1ec55e23e452074e04 Mon Sep 17 00:00:00 2001 From: Molkobain Date: Wed, 17 Oct 2018 15:36:07 +0200 Subject: [PATCH] PHPDoc --- application/dashboard.class.inc.php | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/application/dashboard.class.inc.php b/application/dashboard.class.inc.php index 7f2e5da33..1a8332773 100644 --- a/application/dashboard.class.inc.php +++ b/application/dashboard.class.inc.php @@ -356,11 +356,12 @@ abstract class Dashboard $this->aCells[] = array($oDashlet); } - /** - * @param \WebPage $oPage - * - * @throws \ReflectionException - */ + /** + * @param \WebPage $oPage * + * @param array $aExtraParams + * + * @throws \ReflectionException + */ public function RenderProperties($oPage, $aExtraParams = array()) { // menu to pick a layout and edit other properties of the dashboard @@ -558,7 +559,13 @@ EOF } return $iNewId + 1; } - + + /** + * @param $oForm + * @param array $aExtraParams + * + * @return mixed + */ abstract protected function SetFormParams($oForm, $aExtraParams = array()); public static function GetDashletClassFromType($sType, $oFactory = null)