Notnull.class.php 370 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3 4 5 6 7 8 9
<?php
class Doctrine_Validator_Notnull {
    /**
     * @param Doctrine_Record $record
     * @param string $key
     * @param mixed $value
     * @return boolean
     */
    public function validate(Doctrine_Record $record, $key, $value) {
doctrine's avatar
doctrine committed
10
        if ($value === null || $value === '')
doctrine's avatar
doctrine committed
11 12 13
            return false;
        
        return true;
doctrine's avatar
doctrine committed
14 15 16
    }
}
?>