1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/Doctrine/Validator/Nospace.php
2006-05-30 08:56:40 +00:00

18 lines
383 B
PHP

<?php
class Doctrine_Validator_NoSpace {
/**
* @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(trim($value) === '')
return false;
return true;
}
}
?>