We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AfterConstraint.php
return $schedule->isOnce() ? $schedule->timestamp_target->diffInHours(now()->floorSeconds()) === $schedule->delay_minutes : $schedule->timestamp_target->diffInHours(now()->floorSeconds()) > $schedule->delay_minutes;
Should be like this
return $schedule->isOnce() ? $schedule->timestamp_target->diffInMinutes(now()) >= $schedule->delay_minutes && is_null($schedule->completed_at) : $schedule->timestamp_target->diffInMinutes(now()) > $schedule->delay_minutes; on line 46 to 48
return $schedule->isOnce() ? $schedule->timestamp_target->diffInMinutes(now()) >= $schedule->delay_minutes && is_null($schedule->completed_at) : $schedule->timestamp_target->diffInMinutes(now()) > $schedule->delay_minutes;
The text was updated successfully, but these errors were encountered:
Fixed https://github.com/BinarCode/laravel-mailator/releases/tag/6.0.1
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Please review
return $schedule->isOnce() ? $schedule->timestamp_target->diffInHours(now()->floorSeconds()) === $schedule->delay_minutes : $schedule->timestamp_target->diffInHours(now()->floorSeconds()) > $schedule->delay_minutes;
Should be like this
return $schedule->isOnce() ? $schedule->timestamp_target->diffInMinutes(now()) >= $schedule->delay_minutes && is_null($schedule->completed_at) : $schedule->timestamp_target->diffInMinutes(now()) > $schedule->delay_minutes;
on line 46 to 48
The text was updated successfully, but these errors were encountered: