mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-08-30 20:55:32 +08:00
15 lines
272 B
PHP
15 lines
272 B
PHP
<?php
|
||
|
||
namespace app\common\service;
|
||
|
||
use base\common\service\NginxLogParserBase;
|
||
|
||
/**
|
||
* Nginx access log 解析器(App 入口类).
|
||
*
|
||
* 业务侧可在此覆盖 NginxLogParserBase 的方法实现定制逻辑.
|
||
*/
|
||
class NginxLogParser extends NginxLogParserBase
|
||
{
|
||
}
|