Fix comments

This commit is contained in:
ATM john 2021-07-11 14:13:24 +02:00
parent dc3f960ce8
commit 19ab5ce420

View File

@ -49,7 +49,8 @@ class Validate
* Constructor * Constructor
* *
* @param DoliDB $db Database handler * @param DoliDB $db Database handler
* @param Translate $outputLang * @param Translate $outputLang output lang for error
* @return null
*/ */
public function __construct($db, $outputLang = false) public function __construct($db, $outputLang = false)
{ {
@ -68,6 +69,7 @@ class Validate
/** /**
* Use to clear errors msg or other ghost vars * Use to clear errors msg or other ghost vars
* @return null
*/ */
protected function clear() protected function clear()
{ {
@ -76,6 +78,9 @@ class Validate
/** /**
* Use to clear errors msg or other ghost vars * Use to clear errors msg or other ghost vars
*
* @param string $errMsg your error message
* @return null
*/ */
protected function setError($errMsg) protected function setError($errMsg)
{ {
@ -86,7 +91,7 @@ class Validate
* Check for e-mail validity * Check for e-mail validity
* *
* @param string $email e-mail address to validate * @param string $email e-mail address to validate
* @param int $maxLength * @param int $maxLength string max length
* @return boolean Validity is ok or not * @return boolean Validity is ok or not
*/ */
public function isEmail($email, $maxLength = false) public function isEmail($email, $maxLength = false)
@ -163,7 +168,6 @@ class Validate
* Check for string not empty * Check for string not empty
* *
* @param string $string to validate * @param string $string to validate
* @param int $length max length
* @return boolean Validity is ok or not * @return boolean Validity is ok or not
*/ */
public function isNotEmptyString($string) public function isNotEmptyString($string)