diff --git a/www/nginx/src/opnsense/mvc/app/library/OPNsense/Nginx/AccessLogParser.php b/www/nginx/src/opnsense/mvc/app/library/OPNsense/Nginx/AccessLogParser.php index 8bf5c6c03..b5ab6bb67 100644 --- a/www/nginx/src/opnsense/mvc/app/library/OPNsense/Nginx/AccessLogParser.php +++ b/www/nginx/src/opnsense/mvc/app/library/OPNsense/Nginx/AccessLogParser.php @@ -42,7 +42,8 @@ class AccessLogParser $this->parse_file(); } - private function parse_file() { + private function parse_file() + { $handle = @fopen($this->file_name, 'r'); if ($handle) { while (($buffer = fgets($handle)) !== false) { diff --git a/www/nginx/src/opnsense/mvc/app/library/OPNsense/Nginx/StreamAccessLogParser.php b/www/nginx/src/opnsense/mvc/app/library/OPNsense/Nginx/StreamAccessLogParser.php index d897c94cb..3e617f1ef 100644 --- a/www/nginx/src/opnsense/mvc/app/library/OPNsense/Nginx/StreamAccessLogParser.php +++ b/www/nginx/src/opnsense/mvc/app/library/OPNsense/Nginx/StreamAccessLogParser.php @@ -43,7 +43,8 @@ class StreamAccessLogParser $this->parse_file(); } - private function parse_file() { + private function parse_file() + { $handle = @fopen($this->file_name, 'r'); if ($handle) { while (($buffer = fgets($handle)) !== false) {