From ebb807fe11cf05ece5c2d6831cc57907a4d88a6a Mon Sep 17 00:00:00 2001 From: Marc Jauvin Date: Mon, 25 Apr 2022 09:18:02 -0400 Subject: [PATCH] remove non-existent argument to Ini::parse() method --- src/Halcyon/Processors/SectionParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Halcyon/Processors/SectionParser.php b/src/Halcyon/Processors/SectionParser.php index f3dbadcdf..a54b6d960 100644 --- a/src/Halcyon/Processors/SectionParser.php +++ b/src/Halcyon/Processors/SectionParser.php @@ -211,7 +211,7 @@ public static function parse(string $content, array $options = []): array } if ($count >= 3) { - $result['settings'] = @$iniParser->parse($sections[0], true) + $result['settings'] = @$iniParser->parse($sections[0]) ?: [self::ERROR_INI => $sections[0]]; $result['code'] = $sections[1];