mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
T7: TimerBase shouldExecuteTask() - main/auto/all/manual/disabled modes
with two-phase DB row lock for auto mode
T8: TimerControllerBase - host_id param, logStart/logEnd methods
TimerServiceBase - inject host_id into site URLs
T9: TimerLogClean command - php think admin:timer:log:clean --days=30
12 lines
182 B
PHP
12 lines
182 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace app\common\command\admin\timer;
|
|
|
|
use base\common\command\admin\timer\TimerLogCleanBase;
|
|
|
|
class TimerLogClean extends TimerLogCleanBase
|
|
{
|
|
}
|