funchat/core/template/src/BlockHandler/BlockHandlerInterface.php
2025-06-02 22:38:25 +02:00

10 lines
No EOL
208 B
PHP

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