Skip to content
Snippets Groups Projects
DateValidation.php 215 B
Newer Older
Адлан Шамавов's avatar
Адлан Шамавов committed
<?php

namespace App\Validation;

class DateValidation
{
    public static function validate(string $date): bool
    {
        if (strtotime($date)) {
            return true;
        }
        return false;
    }
}