mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-08-30 12:45:32 +08:00
16 lines
397 B
PHP
16 lines
397 B
PHP
<?php
|
||
|
||
namespace app\common\service;
|
||
|
||
use base\common\service\NginxLogAggregatorBase;
|
||
|
||
/**
|
||
* Nginx 访问日志聚合统计 Service(业务入口).
|
||
*
|
||
* 继承自 Base 内核,业务侧可在本类中重写 aggregateHour / formatDateStr 等方法
|
||
* 来定制聚合逻辑(依赖倒置:Base 层只调用 app 入口类)。
|
||
*/
|
||
class NginxLogAggregator extends NginxLogAggregatorBase
|
||
{
|
||
}
|