Files
Piwigo/include/smarty/src/FunctionHandler/FunctionHandlerInterface.php
Linty 1be0527523 issue #2405 update smarty
and made Piwigo compatible with smarty 5.x
2025-09-17 12:05:48 +02:00

10 lines
194 B
PHP

<?php
namespace Smarty\FunctionHandler;
use Smarty\Template;
interface FunctionHandlerInterface {
public function handle($params, Template $template);
public function isCacheable(): bool;
}