Fixing missing boolean return in Validation::cc()

Fixing Validation test case to pass under PHPUnit.
This commit is contained in:
mark_story 2010-05-20 22:30:47 -04:00
parent 625d120d74
commit 7cef278ce2
2 changed files with 21 additions and 6 deletions

View file

@ -191,6 +191,7 @@ class Validation {
return self::luhn($check, $deep);
}
}
return false;
}
/**