From 1ded65daeb8da1fb0d22016e53c2e7026557f040 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 5 Jul 2015 10:50:23 +0200 Subject: [PATCH] fixed CS --- lib/Twig/Node/Expression/Call.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/Twig/Node/Expression/Call.php b/lib/Twig/Node/Expression/Call.php index ee82343de..51e2cac5b 100644 --- a/lib/Twig/Node/Expression/Call.php +++ b/lib/Twig/Node/Expression/Call.php @@ -158,10 +158,7 @@ abstract class Twig_Node_Expression_Call extends Twig_Node_Expression $callableName = $r->getDeclaringClass()->name.'::'.$callableName; } - throw new LogicException(sprintf( - 'The last parameter of "%s" for %s "%s" must be an array with default value, eg. "array $arg = array()".', - $callableName, $callType, $callName - )); + throw new LogicException(sprintf('The last parameter of "%s" for %s "%s" must be an array with default value, eg. "array $arg = array()".', $callableName, $callType, $callName)); } }