Update tests

This commit is contained in:
uwetews
2017-05-27 12:17:09 +02:00
parent 889fd2debf
commit 3db8beb54a

View File

@@ -159,14 +159,14 @@ class RegisterFunctionBCTest extends PHPUnit_Smarty
} }
} }
function myfunctionBC($params, &$smarty) function myfunctionBC($params, $smarty)
{ {
return "hello world $params[value]"; return "hello world $params[value]";
} }
class myfunctionBCclass class myfunctionBCclass
{ {
static function execute($params, &$smarty) static function execute($params, $smarty)
{ {
return "hello world $params[value]"; return "hello world $params[value]";
} }