diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-06-16 23:36:01 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-06-16 23:36:01 +0200 |
commit | 9736d3fb84260c24faa6c1538c99859441c0e2f8 (patch) | |
tree | b2972897b04a81af0aca9b1fc85ad34edb2112d4 /system/libraries/Validation.php | |
parent | 810d5015dd535098cef3f7c16d997374d0d431ac (diff) |
correcting some docblock comments
Diffstat (limited to 'system/libraries/Validation.php')
-rw-r--r-- | system/libraries/Validation.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/system/libraries/Validation.php b/system/libraries/Validation.php index 9654b4f4e..f5e4d2223 100644 --- a/system/libraries/Validation.php +++ b/system/libraries/Validation.php @@ -402,6 +402,7 @@ class CI_Validation { *
* @access public
* @param string
+ * @param field
* @return bool
*/
function matches($str, $field)
@@ -421,6 +422,7 @@ class CI_Validation { *
* @access public
* @param string
+ * @param value
* @return bool
*/
function min_length($str, $val)
@@ -440,6 +442,7 @@ class CI_Validation { *
* @access public
* @param string
+ * @param value
* @return bool
*/
function max_length($str, $val)
@@ -459,6 +462,7 @@ class CI_Validation { *
* @access public
* @param string
+ * @param value
* @return bool
*/
function exact_length($str, $val)
|