'Y-m-d' ]; /** * Check the $value is valid * * @param mixed $value * @return bool */ public function check($value): bool { $this->requireParameters($this->fillableParams); $format = $this->parameter('format'); return date_create_from_format($format, $value) !== false; } }