[Yaml] Fixed an exception message

This commit is contained in:
Javier Eguiluz 2021-07-13 10:50:48 +02:00 committed by GitHub
parent a0496bd748
commit 7036f2f561
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -711,7 +711,7 @@ class Inline
$nextOffset += strspn($value, ' ', $nextOffset); $nextOffset += strspn($value, ' ', $nextOffset);
if ('' === $tag && (!isset($value[$nextOffset]) || \in_array($value[$nextOffset], [']', '}', ','], true))) { if ('' === $tag && (!isset($value[$nextOffset]) || \in_array($value[$nextOffset], [']', '}', ','], true))) {
throw new ParseException(sprintf('Using the unquoted scalar value "!" is not supported. You must quote it.', $value), self::$parsedLineNumber + 1, $value, self::$parsedFilename); throw new ParseException('Using the unquoted scalar value "!" is not supported. You must quote it.', self::$parsedLineNumber + 1, $value, self::$parsedFilename);
} }
// Is followed by a scalar and is a built-in tag // Is followed by a scalar and is a built-in tag