| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | trait QueueableTrait |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * The name of the queue the job should be sent to. |
||
| 13 | * |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | public $queue = Queue::JOBS; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Set the desired queue for the job. |
||
| 20 | * |
||
| 21 | * @param string $queue |
||
| 22 | * |
||
| 23 | * @return $this |
||
| 24 | */ |
||
| 25 | public function onQueue(string $queue) |
||
| 31 |