15 lines
266 B
PHP
15 lines
266 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Process;
|
|
|
|
use Hyperf\AsyncQueue\Process\ConsumerProcess;
|
|
use Hyperf\Process\Annotation\Process;
|
|
|
|
#[Process(name: 'async-queue')]
|
|
class WhfConsumerProcess extends ConsumerProcess
|
|
{
|
|
protected string $queue = 'whf';
|
|
}
|