Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Jul 18, 2024
1 parent ae119ec commit 15a3f6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Controller/Admin/QueuedJobsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ public function stats(?string $jobType = null): void {
* @return \Cake\Http\Response|null|void
*/
public function view(?int $id = null) {
$queuedJob = $this->QueuedJobs->get((int)$id,
$queuedJob = $this->QueuedJobs->get(
(int)$id,
contain: ['WorkerProcesses'],
);

Expand Down

0 comments on commit 15a3f6b

Please sign in to comment.