| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | public static function getSubscribedCommand(): array |
||
| 53 | { |
||
| 54 | return [ |
||
| 55 | 'processorName' => self::NAME, |
||
| 56 | |||
| 57 | // these are optional, setting these option we make the migration smooth and backward compatible. |
||
| 58 | 'queueName' => 'webhooks', |
||
| 59 | 'queueNameHardcoded' => true, |
||
| 60 | 'exclusive' => true, |
||
| 61 | ]; |
||
| 62 | } |
||
| 63 | } |
||
| 64 |