blob: 9aa744ec7400a8aefe1ad2dfb32ed0187a7a9396 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
namespace Smarty\BlockHandler;
use Smarty\Template;
interface BlockHandlerInterface {
public function handle($params, $content, Template $template, &$repeat);
public function isCacheable(): bool;
}
|