blob: ce77e13d20638ae0c92556f5a6a2156e0a2cf2d6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<?php
namespace Smarty\FunctionHandler;
use Smarty\Template;
interface FunctionHandlerInterface {
public function handle($params, Template $template);
public function isCacheable(): bool;
}
|