summaryrefslogtreecommitdiff
path: root/src/FunctionHandler/Base.php
blob: 7cf1963724d1c3fb350d7a642d3e384743af69c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

namespace Smarty\FunctionHandler;

use Smarty\Template;

class Base implements FunctionHandlerInterface {

	/**
	 * @var bool
	 */
	protected $cacheable = true;

	public function isCacheable(): bool {
		return $this->cacheable;
	}

	public function handle($params, Template $template) {
		// TODO: Implement handle() method.
	}
}