Time.php in Zircon Profile 8
File
vendor/symfony/validator/Constraints/Time.php
View source
<?php
namespace Symfony\Component\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
class Time extends Constraint {
const INVALID_FORMAT_ERROR = 1;
const INVALID_TIME_ERROR = 2;
protected static $errorNames = array(
self::INVALID_FORMAT_ERROR => 'INVALID_FORMAT_ERROR',
self::INVALID_TIME_ERROR => 'INVALID_TIME_ERROR',
);
public $message = 'This value is not a valid time.';
}
Classes
Name |
Description |
Time |
@Target({"PROPERTY", "METHOD", "ANNOTATION"}) |