We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
runQueue()
1 parent 8ff0197 commit 1b76ab3Copy full SHA for 1b76ab3
src/Task.php
@@ -301,6 +301,8 @@ protected function runUrl()
301
302
/**
303
* Sends a job to the queue.
304
+ *
305
+ * @return bool Status of the queue push
306
*/
307
protected function runQueue()
308
{
@@ -315,7 +317,7 @@ protected function runQueue()
315
317
]);
316
318
}
319
- return service('queue')->push(...$queueAction);
320
+ return service('queue')->push(...$queueAction)->getStatus();
321
322
323
0 commit comments