for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ShiftOneLabs\LaravelSqsFifoQueue\Bus;
trait SqsFifoQueueable
{
/**
* The message group id the job should be sent to.
*
* @var string
*/
public $messageGroupId;
* The deduplication method to use for the job.
public $deduplicator;
* Set the desired message group id for the job.
* @param string $messageGroupId
* @return $this
public function onMessageGroup($messageGroupId)
$this->messageGroupId = $messageGroupId;
return $this;
}
* Set the desired deduplication method for the job.
* @param string $deduplicator
public function withDeduplicator($deduplicator)
$this->deduplicator = $deduplicator;
* Remove the deduplication method from the job.
public function withoutDeduplicator()
return $this->withDeduplicator('');