| 123456789101112131415161718192021222324252627 |
- <?php
- namespace app\process\dataReport;
- use app\v1\logic\tool\dataReport\GameTotalMonthDataReportLogic;
- use Workerman\Crontab\Crontab;
- /**
- * 统计总表
- */
- class GameTotal
- {
- public function onWorkerStart(): void
- {
- // 每2小时执行一次
- new Crontab('0 */2 * * *', function() {
- (new GameTotalMonthDataReportLogic())->run();
- });
- }
- // {"date":["2025-06-25","2025-06-26"]}
- public function run($args)
- {
- $params = $args ? json_decode($args, true) : [];
- return (new GameTotalMonthDataReportLogic())->run($params);
- }
- }
|