1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/Doctrine/Validator/Date.php
doctrine e1548625b8
2006-05-30 09:12:57 +00:00

15 lines
331 B
PHP

<?php
class Doctrine_Validator_Date {
/**
* @param Doctrine_Record $record
* @param string $key
* @param mixed $value
* @param string $args
* @return boolean
*/
public function validate(Doctrine_Record $record, $key, $value, $args) {
return checkdate($value);
}
}
?>