AsyncQueueConsumer.php 248 B

1234567891011121314
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Process;
  4. use Hyperf\AsyncQueue\Process\ConsumerProcess;
  5. use Hyperf\Process\Annotation\Process;
  6. #[Process]
  7. class AsyncQueueConsumer extends ConsumerProcess
  8. {
  9. protected string $queue = 'import';
  10. }