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
The scheduler should work like the following example:
$console->scheduler(function ($scheduler) { $scheduler->command("hello")->everyDay(); $scheduler->php("hello")->everyDay(); });
You can use the externel package for implementing the scheduer. The command method must console the custom bowphp console command.
$console->addCommand('hello', function (Argument $argument) { echo Color::green("hello, bow task runner."); });
The text was updated successfully, but these errors were encountered:
papac
No branches or pull requests
The scheduler should work like the following example:
You can use the externel package for implementing the scheduer. The command method must console the custom bowphp console command.
The text was updated successfully, but these errors were encountered: