Files
ulthon_admin/app/common/service/NginxLogAggregator.php

16 lines
397 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\common\service;
use base\common\service\NginxLogAggregatorBase;
/**
* Nginx 访问日志聚合统计 Service业务入口.
*
* 继承自 Base 内核,业务侧可在本类中重写 aggregateHour / formatDateStr 等方法
* 来定制聚合逻辑依赖倒置Base 层只调用 app 入口类)。
*/
class NginxLogAggregator extends NginxLogAggregatorBase
{
}