summaryrefslogtreecommitdiff
path: root/lib/smarty3/sysplugins/smarty_internal_resource_string.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/smarty3/sysplugins/smarty_internal_resource_string.php')
-rw-r--r--lib/smarty3/sysplugins/smarty_internal_resource_string.php21
1 files changed, 11 insertions, 10 deletions
diff --git a/lib/smarty3/sysplugins/smarty_internal_resource_string.php b/lib/smarty3/sysplugins/smarty_internal_resource_string.php
index f2610d9..3fecbb7 100644
--- a/lib/smarty3/sysplugins/smarty_internal_resource_string.php
+++ b/lib/smarty3/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
*/
@@ -99,9 +98,11 @@ class Smarty_Internal_Resource_String extends Smarty_Resource
*
* @return bool
*/
+ /**
+ * @return bool
+ */
public function checkTimestamps()
{
return false;
}
}
-