thrownewParserException(sprintf('A YAML file cannot contain tabs as indentation at line %d (%s).',$this->getRealCurrentLineNb()+1,$this->currentLine));
thrownewParserException(sprintf("YAML merge keys used with a scalar value instead of an array at line %s (%s)",$this->getRealCurrentLineNb()+1,$this->currentLine));
}
elseif(isset($parsed[0]))
{
// Numeric array, merge individual elements
foreach(array_reverse($parsed)as$parsedItem)
{
if(!is_array($parsedItem))
{
thrownewParserException(sprintf("Merge items must be arrays at line %s (%s).",$this->getRealCurrentLineNb()+1,$parsedItem));