no message

This commit is contained in:
hellcat 2026-08-02 18:47:26 +08:00
parent 6a91ea96a3
commit 0015d1a879

View File

@ -5,6 +5,7 @@
use Illuminate\Console\Command;
use App\Models\Articles;
use Illuminate\Support\Facades\Cache;
use App\Services\CacheService;
class SyncArticleLikes extends Command
{
@ -60,6 +61,8 @@ public function handle()
Cache::put($sLockKey, 1, now()->addDay());
}
CacheService::updateOrderLikes();
$this->comment("本次任务结束:{$iBurstCount} 篇爆发增长,{$iYearlyCount} 篇全年喜提。");
}