You are here

public function DateValidatorTest::getValidDates in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Constraints/DateValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\DateValidatorTest::getValidDates()

File

vendor/symfony/validator/Tests/Constraints/DateValidatorTest.php, line 69

Class

DateValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getValidDates() {
  return array(
    array(
      '2010-01-01',
    ),
    array(
      '1955-12-12',
    ),
    array(
      '2030-05-31',
    ),
  );
}