propelorm/Propel2

View on GitHub
src/Propel/Runtime/Validator/Constraints/DateValidator.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * MIT License. This file is part of the Propel package.
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Propel\Runtime\Validator\Constraints;

use DateTimeInterface;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\Constraints\DateValidator as SymfonyDateValidator;

/**
 * Validates Dates
 * Provides FC on \DateTimeInterface values which were removed from the DateValidator in Symfony 5.
 * Propel expectations on DateTime validation are detaching starting with Symfony 5.
 */
class DateValidator extends SymfonyDateValidator
{
    /**
     * @param mixed $value The value that should be validated
     * @param \Symfony\Component\Validator\Constraint $constraint
     *
     * @return void
     */
    public function validate($value, Constraint $constraint): void
    {
        if ($value instanceof DateTimeInterface) {
            return;
        }

        parent::validate($value, $constraint);
    }
}