Correct types for Validation::range().

Refs #3304
This commit is contained in:
mark_story 2014-04-13 06:16:24 -04:00
parent d2fa1b444f
commit d4ae2b0b88

View file

@ -711,8 +711,8 @@ class Validation {
* $check is a legal finite on this platform
*
* @param string $check Value to check
* @param integer $lower Lower limit
* @param integer $upper Upper limit
* @param int|float $lower Lower limit
* @param int|float $upper Upper limit
* @return boolean Success
*/
public static function range($check, $lower = null, $upper = null) {