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
what would be the best way for me to define a try catch on each task so that one task is not harmed by the other
<?php $this->scheduler->call(function () use (&$skyhub) { $skyhub->invoice(); })->at('0,30 * * * *')->then(function ($output) use (&$logger) { if (!empty($output)) { $logger->error("Skyhub Invoice - {$output}"); } }); $this->scheduler->call(function () use (&$skyhub) { $skyhub->shipped(); })->at('0,30 * * * *')->then(function ($output) use (&$logger) { if (!empty($output)) { $logger->error("Skyhub Shipped - {$output}"); } });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
what would be the best way for me to define a try catch on each task so that one task is not harmed by the other
The text was updated successfully, but these errors were encountered: