Files
Smarty-Extended/src/Compile/Modifier/ModifierCompilerInterface.php

17 lines
401 B
PHP
Raw Normal View History

<?php
namespace Smarty\Compile\Modifier;
interface ModifierCompilerInterface {
/**
* Compiles code for the modifier
*
* @param array $params array with attributes from parser
* @param \Smarty\Compiler\Template $compiler compiler object
*
* @return string compiled code
* @throws \Smarty\CompilerException
*/
public function compile($params, \Smarty\Compiler\Template $compiler);
}