Skip to content

Commit 15a3f6b

Browse files
committed
Fix CS
1 parent ae119ec commit 15a3f6b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Controller/Admin/QueuedJobsController.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ public function stats(?string $jobType = null): void {
112112
* @return \Cake\Http\Response|null|void
113113
*/
114114
public function view(?int $id = null) {
115-
$queuedJob = $this->QueuedJobs->get((int)$id,
115+
$queuedJob = $this->QueuedJobs->get(
116+
(int)$id,
116117
contain: ['WorkerProcesses'],
117118
);
118119

0 commit comments

Comments
 (0)