File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ what it missed::
316316 return $this->schedule ??= (new Schedule())
317317 ->with(
318318 // ...
319- );
319+ )
320320 ->stateful($this->cache)
321321 }
322322 }
@@ -338,7 +338,7 @@ same task more than once::
338338 return $this->schedule ??= (new Schedule())
339339 ->with(
340340 // ...
341- );
341+ )
342342 ->lock($this->lockFactory->createLock('my-lock')
343343 }
344344 }
@@ -363,7 +363,9 @@ before being further redispatched to its corresponding handler::
363363 public function getSchedule(): Schedule
364364 {
365365 return $this->schedule ??= (new Schedule())
366- ->with(RecurringMessage::every('5 seconds'), new RedispatchMessage(new Message(), 'async'))
366+ ->with(
367+ RecurringMessage::every('5 seconds'),
368+ new RedispatchMessage(new Message(), 'async')
367369 );
368370 }
369371 }
You can’t perform that action at this time.
0 commit comments