10 lines
208 B
PHP
10 lines
208 B
PHP
|
<?php
|
||
|
|
||
|
namespace Smarty\BlockHandler;
|
||
|
|
||
|
use Smarty\Template;
|
||
|
|
||
|
interface BlockHandlerInterface {
|
||
|
public function handle($params, $content, Template $template, &$repeat);
|
||
|
public function isCacheable(): bool;
|
||
|
}
|