You are here

public function TimeValidatorTest::getValidTimes in Zircon Profile 8

Same name and namespace in other branches
  1. 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

TimeValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getValidTimes() {
  return array(
    array(
      '01:02:03',
    ),
    array(
      '00:00:00',
    ),
    array(
      '23:59:59',
    ),
  );
}