'H:i:s', ]; /** * @param mixed $value * * @throws MissingRequiredParameterException * * @return bool */ public function check($value) { $this->requireParameters($this->fillable_params); $format = $this->parameter('format'); return date_create_from_format('Y-m-d ' . $format, '2019-01-01 ' . $value) !== false; } }