mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-01 02:52:50 +02:00
10 lines
194 B
PHP
10 lines
194 B
PHP
<?php
|
|
|
|
namespace Smarty\FunctionHandler;
|
|
|
|
use Smarty\Template;
|
|
|
|
interface FunctionHandlerInterface {
|
|
public function handle($params, Template $template);
|
|
public function isCacheable(): bool;
|
|
} |