From 033dd027dfc8e1905ce782a687160d66d3bd65ee Mon Sep 17 00:00:00 2001 From: Anthon Pang Date: Sun, 4 Oct 2015 12:25:29 -0400 Subject: [PATCH] phpcs --- src/Compiler.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/Compiler.php b/src/Compiler.php index b783c4f1..a916f85c 100644 --- a/src/Compiler.php +++ b/src/Compiler.php @@ -3579,7 +3579,18 @@ protected function libCall($args) { $name = $this->compileStringContent($this->coerceString($this->reduce(array_shift($args), true))); - return $this->reduce(array('fncall', $name, array_map(function ($a) { return array(null, $a); }, $args))); + return $this->reduce( + array( + 'fncall', + $name, + array_map( + function ($a) { + return array(null, $a); + }, + $args + ) + ) + ); } protected static $libIf = array('condition', 'if-true', 'if-false');