From 3db8beb54abbe01d2574fcaaa2107e615f5bee23 Mon Sep 17 00:00:00 2001 From: uwetews Date: Sat, 27 May 2017 12:17:09 +0200 Subject: [PATCH] Update tests --- .../RegisterFunction/RegisterFunctionBCTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/UnitTests/SmartyMethodsTests/RegisterFunction/RegisterFunctionBCTest.php b/tests/UnitTests/SmartyMethodsTests/RegisterFunction/RegisterFunctionBCTest.php index ca53ab24..b9082c26 100644 --- a/tests/UnitTests/SmartyMethodsTests/RegisterFunction/RegisterFunctionBCTest.php +++ b/tests/UnitTests/SmartyMethodsTests/RegisterFunction/RegisterFunctionBCTest.php @@ -159,14 +159,14 @@ class RegisterFunctionBCTest extends PHPUnit_Smarty } } -function myfunctionBC($params, &$smarty) +function myfunctionBC($params, $smarty) { return "hello world $params[value]"; } class myfunctionBCclass { - static function execute($params, &$smarty) + static function execute($params, $smarty) { return "hello world $params[value]"; }