minor fixes

This commit is contained in:
Simon Wisselink
2023-01-04 23:48:45 +01:00
parent 3cc61133a3
commit 2b71415d1f
3 changed files with 1 additions and 7 deletions

View File

@@ -13,6 +13,6 @@ class BlockPluginWrapper implements BlockHandlerInterface {
}
public function handle($params, $content, Template $template, &$repeat) {
return call_user_func_array($this->callback, [$params, $content, $template, &$repeat]);
return call_user_func_array($this->callback, [$params, $content, &$template, &$repeat]);
}
}

View File

@@ -10,10 +10,6 @@
namespace Smarty\Compile;
use Smarty\Compiler\Template;
use Smarty\CompilerException;
use Smarty\Exception;
/**
* Smarty Internal Plugin Compile Object Block Function Class
*

View File

@@ -10,8 +10,6 @@
namespace Smarty\Compile;
use Smarty\Compile\Base;
/**
* Smarty Internal Plugin Compile Object Function Class
*