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

15 lines
272 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\NginxLogParserBase;
/**
* Nginx access log 解析器App 入口类).
*
* 业务侧可在此覆盖 NginxLogParserBase 的方法实现定制逻辑.
*/
class NginxLogParser extends NginxLogParserBase
{
}