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

19 lines
326 B
PHP
Raw Normal View History

2025-06-02 22:38:25 +02:00
<?php
namespace Smarty\BlockHandler;
use Smarty\Template;
abstract class Base implements BlockHandlerInterface {
/**
* @var bool
*/
protected $cacheable = true;
abstract public function handle($params, $content, Template $template, &$repeat);
public function isCacheable(): bool {
return $this->cacheable;
}
}