Improve exception message in "repeat" helper

This commit is contained in:
Dmitriy Simushev 2014-12-15 11:44:43 +00:00
parent 2455d3d269
commit 8c6c345235

View File

@ -45,7 +45,7 @@ class RepeatHelper implements HelperInterface
$times = intval($context->get($parsed_args[0])); $times = intval($context->get($parsed_args[0]));
if ($times < 0) { if ($times < 0) {
throw new \InvalidArgumentException( throw new \InvalidArgumentException(
'The first argument has to be greater than or equal to 0.' 'The first argument of "repeat" helper has to be greater than or equal to 0.'
); );
} }
$string = $template->render($context); $string = $template->render($context);