Remove last var_export statements

Got overlooked while refactoring
This commit is contained in:
Pascal Thormeier 2015-06-19 11:43:58 +02:00
parent 15af0f8e52
commit 6ef6b7bc08
2 changed files with 2 additions and 2 deletions

View File

@ -145,7 +145,7 @@ class Arguments
throw new \InvalidArgumentException(
sprintf(
'Malformed arguments string: "%s"',
var_export($args_string, true)
$args_string
)
);
}

View File

@ -81,7 +81,7 @@ class Parser
throw new \LogicException(
sprintf(
'Unexpected closing tag: /%s',
var_export($token[Tokenizer::NAME], true)
$token[Tokenizer::NAME]
)
);
}