1
0
mirror of synced 2025-01-18 14:31:40 +03:00
doctrine2/Doctrine/Validator/Date.class.php
2006-05-30 08:56:40 +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);
}
}
?>