aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_string.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_string.php')
-rw-r--r--vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_string.php18
1 files changed, 8 insertions, 10 deletions
diff --git a/vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_string.php b/vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_string.php
index 0175d5182..3fecbb7ef 100644
--- a/vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_string.php
+++ b/vendor/smarty/smarty/libs/sysplugins/smarty_internal_resource_string.php
@@ -21,8 +21,8 @@ class Smarty_Internal_Resource_String extends Smarty_Resource
/**
* populate Source Object with meta data from Resource
*
- * @param Smarty_Template_Source $source source object
- * @param Smarty_Internal_Template $_template template object
+ * @param Smarty_Template_Source $source source object
+ * @param Smarty_Internal_Template $_template template object
*
* @return void
*/
@@ -37,7 +37,7 @@ class Smarty_Internal_Resource_String extends Smarty_Resource
*
* @uses decode() to decode base64 and urlencoded template_resources
*
- * @param Smarty_Template_Source $source source object
+ * @param Smarty_Template_Source $source source object
*
* @return string template source
*/
@@ -49,7 +49,7 @@ class Smarty_Internal_Resource_String extends Smarty_Resource
/**
* decode base64 and urlencode
*
- * @param string $string template_resource to decode
+ * @param string $string template_resource to decode
*
* @return string decoded template_resource
*/
@@ -63,16 +63,15 @@ class Smarty_Internal_Resource_String extends Smarty_Resource
return urldecode(substr($string, 10));
}
}
-
return $string;
}
/**
* modify resource_name according to resource handlers specifications
*
- * @param Smarty $smarty Smarty instance
- * @param string $resource_name resource_name to make unique
- * @param boolean $isConfig flag for config resource
+ * @param Smarty $smarty Smarty instance
+ * @param string $resource_name resource_name to make unique
+ * @param boolean $isConfig flag for config resource
*
* @return string unique resource name
*/
@@ -85,7 +84,7 @@ class Smarty_Internal_Resource_String extends Smarty_Resource
* Determine basename for compiled filename
* Always returns an empty string.
*
- * @param Smarty_Template_Source $source source object
+ * @param Smarty_Template_Source $source source object
*
* @return string resource's basename
*/
@@ -107,4 +106,3 @@ class Smarty_Internal_Resource_String extends Smarty_Resource
return false;
}
}
-