1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/Validator/Nospace.php

15 lines
369 B
PHP
Raw Normal View History

2006-05-30 12:56:40 +04:00
<?php
2006-09-13 22:19:24 +04:00
class Doctrine_Validator_Nospace {
2006-05-30 12:56:40 +04:00
/**
* @param Doctrine_Record $record
* @param string $key
* @param mixed $value
* @param string $args
* @return boolean
*/
public function validate(Doctrine_Record $record, $key, $value, $args) {
2006-09-13 22:19:24 +04:00
return ($value === null || ! preg_match('/\s\t\r\n/',$value));
2006-05-30 12:56:40 +04:00
}
}