1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-11 23:54:06 +02:00

Flextype Core: YamlParser - code fixes according Scrutinizer Tests.

- The parameter $flags is not used and could be removed.
This commit is contained in:
Awilum
2019-02-01 19:11:59 +03:00
parent 0fa03ed782
commit 6276bfedbe

View File

@@ -87,13 +87,11 @@ class YamlParser {
* $array = YamlParser::decode($yaml_file_content);
*
* @param string $input A string containing YAML
* @param int $flags A bit field of PARSE_* constants to customize the YAML parser behavior
*
* @return mixed The YAML converted to a PHP value
*
* @throws ParseException If the YAML is not valid
*/
public static function decode(string $input, int $flags = 0)
public static function decode(string $input)
{
// Try native PECL YAML PHP extension first if available.
if (YamlParser::$native && function_exists('yaml_parse')) {