remove dot

This commit is contained in:
Hemachandar 2025-07-24 20:06:49 +05:30 committed by GitHub
parent fc31787e9a
commit d7f85f9f58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,7 +126,7 @@ class Create extends Base
if (!is_null($scheduledAt)) {
$validator = new DatetimeValidator(requireDateInFuture: true, precision: DateTimeValidator::PRECISION_MINUTES, offset: 60);
if (!$validator->isValid($scheduledAt)) {
throw new Exception(Exception::GENERAL_BAD_REQUEST, 'Execution schedule must be a valid date, and at least 1 minute from now.');
throw new Exception(Exception::GENERAL_BAD_REQUEST, 'Execution schedule must be a valid date, and at least 1 minute from now');
}
}