aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_registerresource.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_registerresource.php')
-rw-r--r--vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_registerresource.php15
1 files changed, 4 insertions, 11 deletions
diff --git a/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_registerresource.php b/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_registerresource.php
index 7c7d0f78a..302657ae0 100644
--- a/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_registerresource.php
+++ b/vendor/smarty/smarty/libs/sysplugins/smarty_internal_method_registerresource.php
@@ -22,25 +22,18 @@ class Smarty_Internal_Method_RegisterResource
* Registers a resource to fetch a template
*
* @api Smarty::registerResource()
- * @link http://www.smarty.net/docs/en/api.register.resource.tpl
+ * @link https://www.smarty.net/docs/en/api.register.resource.tpl
*
* @param \Smarty_Internal_TemplateBase|\Smarty_Internal_Template|\Smarty $obj
* @param string $name name of resource type
- * @param Smarty_Resource|array $resource_handler or instance of
- * Smarty_Resource,
- * or array of
- * callbacks to
- * handle
- * resource
- * (deprecated)
+ * @param Smarty_Resource $resource_handler instance of Smarty_Resource
*
* @return \Smarty|\Smarty_Internal_Template
*/
- public function registerResource(Smarty_Internal_TemplateBase $obj, $name, $resource_handler)
+ public function registerResource(Smarty_Internal_TemplateBase $obj, $name, Smarty_Resource $resource_handler)
{
$smarty = $obj->_getSmartyObj();
- $smarty->registered_resources[ $name ] =
- $resource_handler instanceof Smarty_Resource ? $resource_handler : array($resource_handler, false);
+ $smarty->registered_resources[ $name ] = $resource_handler;
return $obj;
}
}