[Yaml] add missing indicator character

The comma was mentioned in the deprecation message, though it actually
was never checked before in the condition.
This commit is contained in:
Christian Flothmann 2017-01-01 11:31:45 +01:00
parent 1678303549
commit 8725e0b0e1

View File

@ -463,7 +463,7 @@ class Inline
break;
}
if (!isset($mapping[$i + 1]) || !in_array($mapping[$i + 1], array(' ', '[', ']', '{', '}'), true)) {
if (!isset($mapping[$i + 1]) || !in_array($mapping[$i + 1], array(' ', ',', '[', ']', '{', '}'), true)) {
@trigger_error('Using a colon that is not followed by an indication character (i.e. " ", ",", "[", "]", "{", "}" is deprecated since version 3.2 and will throw a ParseException in 4.0.', E_USER_DEPRECATED);
}