Example #1
0
 static function validate($value)
 {
     return parent::validate($value) && self::isNotEmpty($value);
 }
Example #2
0
 static function validate($value)
 {
     return parent::validate($value) && self::isHost($value);
 }
Example #3
0
 static function validate($name)
 {
     return parent::validate($name) && self::containsAllowedCharacters($name);
 }
Example #4
0
 static function validate($value)
 {
     return parent::validate($value) && self::isPhpLabel($value);
 }