From b755f65a8a5d0bd3e34bf8b4761759cdc5f8a6b5 Mon Sep 17 00:00:00 2001 From: Molkobain Date: Tue, 27 Jun 2023 23:35:57 +0200 Subject: [PATCH] Improve PHPDoc --- .../2.x/combodo-db-tools/db_analyzer.class.inc.php | 9 ++++++++- js/wizardhelper.js | 1 + 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/datamodels/2.x/combodo-db-tools/db_analyzer.class.inc.php b/datamodels/2.x/combodo-db-tools/db_analyzer.class.inc.php index 137c980d3..3162e6997 100644 --- a/datamodels/2.x/combodo-db-tools/db_analyzer.class.inc.php +++ b/datamodels/2.x/combodo-db-tools/db_analyzer.class.inc.php @@ -498,7 +498,14 @@ class DatabaseAnalyzer } } - private function NotEmptyToSql($sRef, $sSearchType) + /** + * @param $sRef + * @param string $sSearchType + * + * @return string + * @since 3.1.0 N°6442 + */ + private function NotEmptyToSql($sRef, string $sSearchType) { switch ($sSearchType) { case AttributeDefinition::SEARCH_WIDGET_TYPE_NUMERIC: diff --git a/js/wizardhelper.js b/js/wizardhelper.js index 966412a01..b445eb2c7 100644 --- a/js/wizardhelper.js +++ b/js/wizardhelper.js @@ -65,6 +65,7 @@ function WizardHelper(sClass, sFormPrefix, sState, sInitialState, sStimulus) { 'm_aAllowedValuesRequested': [], 'm_oDefaultValue': {}, 'm_oAllowedValues': {}, + /** {Object} m_aStaticValues Values of the object that are not meant to be changed by the user. Only there to be used in the workflow for dependencies or to be passed through. */ 'm_aStaticValues' : {}, 'm_iFieldsCount': 0, 'm_sFormPrefix': sFormPrefix,