www/nginx: style -> put bracket in a separate line

This commit is contained in:
Fabian Franz
2018-12-17 19:26:23 +01:00
parent 537da9cbe5
commit 94fb4f2dee
2 changed files with 4 additions and 2 deletions
@@ -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) {
@@ -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) {