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; - } -}