예제 #1
0
 static function validate($value)
 {
     return parent::validate($value) && self::isNotEmpty($value);
 }
예제 #2
0
파일: host.php 프로젝트: estvoyage/net
 static function validate($value)
 {
     return parent::validate($value) && self::isHost($value);
 }
예제 #3
0
파일: bucket.php 프로젝트: estvoyage/statsd
 static function validate($name)
 {
     return parent::validate($name) && self::containsAllowedCharacters($name);
 }
예제 #4
0
파일: label.php 프로젝트: estvoyage/object
 static function validate($value)
 {
     return parent::validate($value) && self::isPhpLabel($value);
 }