X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Ftemplate%2Fclass_CompileableTemplate.php;h=41791914ee5581de90d9de32d04206018624081f;hp=b54d9c68a47f9f13655898db4843025eb6734bce;hb=8904918d814abf3468d084b8826e4d280b0885e3;hpb=50705b4cb9c6e6c77d6b2eaff455ef49459eca71 diff --git a/inc/classes/interfaces/template/class_CompileableTemplate.php b/inc/classes/interfaces/template/class_CompileableTemplate.php index b54d9c68..41791914 100644 --- a/inc/classes/interfaces/template/class_CompileableTemplate.php +++ b/inc/classes/interfaces/template/class_CompileableTemplate.php @@ -25,11 +25,11 @@ interface CompileableTemplate extends FrameworkInterface { /** * Assign variables for templates * - * @param $var The "variable" we want to assign - * @param $value The value we want to store in the variable + * @param $variableName The "variable" we want to assign + * @param $value The value we want to store in the variable * @return void */ - function assignVariable ($var, $value); + function assignVariable ($variableName, $value); /** * Load a specified web template into the engine @@ -68,27 +68,27 @@ interface CompileableTemplate extends FrameworkInterface { /** * Adds a variable to current group * - * @param $var Variable to set - * @param $value Value to store in variable + * @param $variableName Variable to set + * @param $value Value to store in variable * @return void */ - function addGroupVariable ($var, $value); + function addGroupVariable ($variableName, $value); /** * Removes a given variable * - * @param $var The variable we are looking for + * @param $variableName The variable we are looking for * @return void */ - function removeVariable ($var); + function removeVariable ($variableName); /** * Assign a given congfiguration variable with a value * - * @param $var The configuration variable we want to assign + * @param $variableName The configuration variable we want to assign * @return void */ - function assignConfigVariable ($var); + function assignConfigVariable ($variableName); /** * Compiles configuration place-holders in all variables. This 'walks'