funchat/core/template/src/BlockHandler/BlockHandlerInterface.php

10 lines
208 B
PHP
Raw Normal View History

2025-06-02 22:38:25 +02:00
<?php
namespace Smarty\BlockHandler;
use Smarty\Template;
interface BlockHandlerInterface {
public function handle($params, $content, Template $template, &$repeat);
public function isCacheable(): bool;
}