setName('article_ai_comment') ->setDescription('资讯AI评论定时任务'); } protected function execute(Input $input, Output $output) { $summary = ArticleAiCommentService::tick(); $output->writeln(sprintf( '[ArticleAiComment] 虚拟账号 %d 个,新增任务 %d 个,已执行 %d 个', $summary['virtual_user_count'] ?? 0, $summary['seeded']['created'] ?? 0, $summary['processed']['done'] ?? 0 )); return 0; } }