Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Task.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@
/**
* Sends a job to the queue.
*/
protected function runQueue()

Check warning on line 305 in src/Task.php

View workflow job for this annotation

GitHub Actions / infection / Mutation Testing

Escaped Mutant for Mutator "ProtectedVisibility": @@ @@ /** * Sends a job to the queue. */ - protected function runQueue() + private function runQueue() { $queueAction = $this->getAction(); if ($this->singleInstance) {
{
$queueAction = $this->getAction();

Expand All @@ -315,7 +315,7 @@
]);
}

return service('queue')->push(...$queueAction);
return service('queue')->push(...$queueAction)->getStatus();
}

/**
Expand Down