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

19 lines
493 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\NginxLogReaderBase;
/**
* Nginx 日志增量读取 serviceApp 入口类).
*
* 框架内部所有调用走本类(依赖倒置):
* `new \app\common\service\NginxLogReader()` 或静态上下文,
* 业务侧如需定制读取逻辑,重写本类对应方法即可拦截。
*
* 全部逻辑由 NginxLogReaderBase 提供,本类默认仅继承不修改。
*/
class NginxLogReader extends NginxLogReaderBase
{
}