feat(nginx-log): NginxLogParser 解析器 service(Base/App 双层)

This commit is contained in:
augushong
2026-07-28 00:38:25 +08:00
parent c4b72913df
commit 7d707c2150
2 changed files with 253 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace app\common\service;
use base\common\service\NginxLogParserBase;
/**
* Nginx access log 解析器App 入口类).
*
* 业务侧可在此覆盖 NginxLogParserBase 的方法实现定制逻辑.
*/
class NginxLogParser extends NginxLogParserBase
{
}