12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace app\crontab\controller;
- use think\facade\Db;
- /**
- * ============================================================================
- *
- * ============================================================================
- *
- * ----------------------------------------------------------------------------
- *
- * ============================================================================
- * 定时器
- */
- class Hour extends BaseCron {
-
- /**
- * 执行频率常量 1小时
- * @var int
- */
- const EXE_TIMES = 3600;
- /**
- * 默认方法
- */
- public function index() {
- }
- }
|