-
-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
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
Tasks order #358
Comments
Hello, ordering execution is not possible at the moment. What is your use case? |
My particular use case is the following: |
This repo is no longer maintained, please see #411 |
Description
Is it possible to define order in which tasks should be executed?
For example
$task = $schedule->run('echo "Hello there!"')->order(1)->everyMinute();
$task = $schedule->run('echo "Hello there again!"')->order(2)->everyMinute();
The text was updated successfully, but these errors were encountered: