From 2dd52e306d9c86aa182b68116c1dd8094e9691fb Mon Sep 17 00:00:00 2001 From: zYne Date: Sun, 2 Sep 2007 17:02:16 +0000 Subject: [PATCH] --- lib/Doctrine/Validator/Enum.php | 55 --------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 lib/Doctrine/Validator/Enum.php diff --git a/lib/Doctrine/Validator/Enum.php b/lib/Doctrine/Validator/Enum.php deleted file mode 100644 index 608994c8d..000000000 --- a/lib/Doctrine/Validator/Enum.php +++ /dev/null @@ -1,55 +0,0 @@ -. - */ - -/** - * Doctrine_Validator_Enum - * - * @package Doctrine - * @category Object Relational Mapping - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL - * @link www.phpdoctrine.com - * @since 1.0 - * @version $Revision$ - * @author Konsta Vesterinen - */ -class Doctrine_Validator_Enum -{ - /** - * @param Doctrine_Record $record - * @param string $key - * @param mixed $value - * @param string $args - * @return boolean - */ - public function validate(Doctrine_Record $record, $key, $value, $args) - { - $max = substr_count($args, '-'); - $int = (int) $value; - - if ($int != $value) { - return false; - } - if ($int < 0 || $int > $max) { - return false; - } - return true; - } -}