We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dff132c commit 0ea2dc1Copy full SHA for 0ea2dc1
src/Jobs/ExtendedQueueable.php
@@ -17,7 +17,7 @@ trait ExtendedQueueable
17
public function chain($chain)
18
{
19
collect($chain)->each(function ($job) {
20
- $serialized = method_exists($this, 'serializeJob') ? $this->serializeJob($job) : serialize($job);
+ $serialized = method_exists($this, 'serializeJob') ? $this->serializeJob($job) : serialize($job);
21
$this->chained[] = $serialized;
22
});
23
0 commit comments