Nospace.class.php 383 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3 4 5 6
<?php
class Doctrine_Validator_NoSpace {
    /**
     * @param Doctrine_Record $record
     * @param string $key
     * @param mixed $value
doctrine's avatar
doctrine committed
7
     * @param string $args
doctrine's avatar
doctrine committed
8 9
     * @return boolean
     */
doctrine's avatar
doctrine committed
10
    public function validate(Doctrine_Record $record, $key, $value, $args) {
11
        if(trim($value) === '')
doctrine's avatar
doctrine committed
12 13 14 15 16 17
            return false;

        return true;
    }
}
?>