- update for PHP 5.4 compatibility

- reformat source to PSR-2 standard
This commit is contained in:
Uwe.Tews@googlemail.com
2013-07-14 22:15:45 +00:00
parent f99e6a83ce
commit 00ccae8857
126 changed files with 5232 additions and 5186 deletions
@@ -15,16 +15,16 @@
* @package Smarty
* @subpackage TemplateResources
*/
abstract class Smarty_Resource_Uncompiled extends Smarty_Resource {
abstract class Smarty_Resource_Uncompiled extends Smarty_Resource
{
/**
* Render and output the template (without using the compiler)
*
* @param Smarty_Template_Source $source source object
* @param Smarty_Internal_Template $_template template object
* @throws SmartyException on failure
* @param Smarty_Template_Source $source source object
* @param Smarty_Internal_Template $_template template object
* @throws SmartyException on failure
*/
public abstract function renderUncompiled(Smarty_Template_Source $source, Smarty_Internal_Template $_template);
abstract public function renderUncompiled(Smarty_Template_Source $source, Smarty_Internal_Template $_template);
/**
* populate compiled object with compiled filepath
@@ -40,5 +40,3 @@ abstract class Smarty_Resource_Uncompiled extends Smarty_Resource {
}
}
?>