public function TimeValidatorTest::getValidTimes in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Tests/Constraints/TimeValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\TimeValidatorTest::getValidTimes()
File
- vendor/
symfony/ validator/ Tests/ Constraints/ TimeValidatorTest.php, line 69
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function getValidTimes() {
return array(
array(
'01:02:03',
),
array(
'00:00:00',
),
array(
'23:59:59',
),
);
}