Skip to content

Commit e81e06e

Browse files
committed
Remove unnecessary by-ref parameter
1 parent 3580739 commit e81e06e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Compiler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ protected static function compileLog(Context $context, array &$vars): string
493493
* @param bool $raw is this {{{ token or not
494494
* @param bool $nosep true to compile without separator
495495
*/
496-
protected static function compileLookup(Context $context, array &$vars, bool $raw, bool $nosep = false): string
496+
protected static function compileLookup(Context $context, array $vars, bool $raw, bool $nosep = false): string
497497
{
498498
$v2 = static::getVariableName($context, $vars[2]);
499499
$v = static::getVariableName($context, $vars[1], $v2);

0 commit comments

Comments
 (0)