mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-08-30 12:45:32 +08:00
19 lines
493 B
PHP
19 lines
493 B
PHP
<?php
|
||
|
||
namespace app\common\service;
|
||
|
||
use base\common\service\NginxLogReaderBase;
|
||
|
||
/**
|
||
* Nginx 日志增量读取 service(App 入口类).
|
||
*
|
||
* 框架内部所有调用走本类(依赖倒置):
|
||
* `new \app\common\service\NginxLogReader()` 或静态上下文,
|
||
* 业务侧如需定制读取逻辑,重写本类对应方法即可拦截。
|
||
*
|
||
* 全部逻辑由 NginxLogReaderBase 提供,本类默认仅继承不修改。
|
||
*/
|
||
class NginxLogReader extends NginxLogReaderBase
|
||
{
|
||
}
|