| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use App\Services\LhcSettlementService;
- class LhcSettlement extends Command
- {
- /**
- * 命令名称和签名
- *
- * @var string
- */
- protected $signature = 'lhc:settlement';
-
- /**
- * 命令描述
- *
- * @var string
- */
- protected $description = '六合彩结算方法';
- /**
- * 执行命令
- *
- * @return int
- */
- public function handle(LhcSettlementService $service)
- {
- $issue = $this->argument('issue');
- $this->info("开始结算期号: {$issue}...");
- $result = $service->settle($issue);
- $this->info($result);
- }
- }
|