1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/Doctrine/Validator/Range.php

21 lines
475 B
PHP

<?php
class Doctrine_Validator_Range {
/**
* @param Doctrine_Record $record
* @param string $key
* @param mixed $value
* @param string $args
* @return boolean
*/
public function validate(Doctrine_Record $record, $key, $value, $args) {
if(isset($args[0]) && $value < $args[0])
return false;
if(isset($args[1]) && $value > $args[1])
return false;
return true;
}
}