Skip to content

Commit 9dd859d

Browse files
committed
Fix up phpstan
1 parent 4d9087f commit 9dd859d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Controller/Admin/QueueController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public function processes() {
135135
return $this->redirect(['action' => 'processes']);
136136
}
137137
if ($this->request->is('post') && $this->request->getQuery('kill')) {
138-
$pid = (int)$this->request->getQuery('kill');
138+
$pid = (string)$this->request->getQuery('kill');
139139
$this->QueueProcesses->terminateProcess($pid);
140140

141141
return $this->redirect(['action' => 'processes']);

0 commit comments

Comments
 (0)