Skip to content

Commit 8360f59

Browse files
authoredJan 7, 2023
Merge pull request #27 from lothid/worker_compatibility_laravel_v9.42
Fix worker compatibility with Laravel v9.42
2 parents d8e30fb + 5c6eb1e commit 8360f59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/Worker.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -157,15 +157,15 @@ public function onResult(MessageResult $context): void
157157
}
158158
}
159159

160-
public function stop($status = 0)
160+
public function stop($status = 0, $options = null)
161161
{
162162
if ($this->interop) {
163163
$this->stopped = true;
164164

165165
return;
166166
}
167167

168-
parent::stop($status);
168+
parent::stop($status, $options);
169169
}
170170

171171
public function setExtensions(array $extensions): self

0 commit comments

Comments
 (0)