21 lines
510 B
PHP
21 lines
510 B
PHP
<?php
|
||
|
||
namespace App\Console\Commands;
|
||
|
||
use App\Services\Draw\LotteryHallRealtimeBroadcaster;
|
||
use Illuminate\Console\Command;
|
||
|
||
class LotteryHallCountdownCommand extends Command
|
||
{
|
||
protected $signature = 'lottery:hall-countdown';
|
||
|
||
protected $description = '大厅 countdown WebSocket:`draw.countdown`(每秒;见界面文档 §2.1)';
|
||
|
||
public function handle(LotteryHallRealtimeBroadcaster $broadcaster): int
|
||
{
|
||
$broadcaster->countdownPulse();
|
||
|
||
return self::SUCCESS;
|
||
}
|
||
}
|