| 1 | <?php |
||
| 11 | trait QueueableOptionsTrait |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var bool |
||
| 15 | * Create and send job to the queue |
||
| 16 | * example: -q=1 |
||
| 17 | */ |
||
| 18 | public $toQueue = false; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @inheritdoc |
||
| 22 | */ |
||
| 23 | protected function queueOptions() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @inheritdoc |
||
| 32 | */ |
||
| 33 | protected function queueOptionAliases() |
||
| 39 | } |
||
| 40 |