Skip to content

Commit

Permalink
Correct types for Validation::range().
Browse files Browse the repository at this point in the history
Refs #3304
  • Loading branch information
markstory committed Apr 13, 2014
1 parent d2fa1b4 commit d4ae2b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Utility/Validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -711,8 +711,8 @@ public static function postal($check, $regex = null, $country = 'us') {
* $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) {
Expand Down

0 comments on commit d4ae2b0

Please sign in to comment.