| 1 | <?php |
||
| 17 | class Smarty_Internal_Compile_Continue extends Smarty_Internal_Compile_Break |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Compiles code for the {continue} tag |
||
| 22 | * |
||
| 23 | * @param array $args array with attributes from parser |
||
| 24 | * @param \Smarty_Internal_TemplateCompilerBase $compiler compiler object |
||
| 25 | * @param array $parameter array with compilation parameter |
||
| 26 | * |
||
| 27 | * @return string compiled code |
||
| 28 | * @throws \SmartyCompilerException |
||
| 29 | */ |
||
| 30 | public function compile($args, Smarty_Internal_TemplateCompilerBase $compiler, $parameter) |
||
| 42 | } |
||
| 43 |