1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Notnull validator no longer checks for empty strings

This commit is contained in:
romanb 2007-09-01 20:20:17 +00:00
parent 7bff012bcb
commit 3e47532e07

View file

@ -40,9 +40,6 @@ class Doctrine_Validator_Notnull
*/ */
public function validate(Doctrine_Record $record, $key, $value) public function validate(Doctrine_Record $record, $key, $value)
{ {
if ($value === null || $value === '') { return !is_null($value);
return false;
}
return true;
} }
} }