🔧
This commit is contained in:
2
vendor/symfony/yaml/Unescaper.php
vendored
2
vendor/symfony/yaml/Unescaper.php
vendored
@@ -84,7 +84,7 @@ class Unescaper
|
||||
'x' => self::utf8chr(hexdec(substr($value, 2, 2))),
|
||||
'u' => self::utf8chr(hexdec(substr($value, 2, 4))),
|
||||
'U' => self::utf8chr(hexdec(substr($value, 2, 8))),
|
||||
default => throw new ParseException(sprintf('Found unknown escape character "%s".', $value)),
|
||||
default => throw new ParseException(\sprintf('Found unknown escape character "%s".', $value)),
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user