Fix annotation for addPluginsDir()

Param of [addPluginsDir()](http://www.smarty.net/docs/en/api.add.plugins.dir.tpl) can be null, array or a string. Fixed annotation so there will be no IDE warnings.
This commit is contained in:
simivar
2016-12-29 14:52:35 +01:00
committed by GitHub
parent c7d42e4a32
commit 1900ce24a3

View File

@@ -948,7 +948,7 @@ class Smarty extends Smarty_Internal_TemplateBase
/** /**
* Adds directory of plugin files * Adds directory of plugin files
* *
* @param null|array $plugins_dir * @param null|array|string $plugins_dir
* *
* @return Smarty current Smarty instance for chaining * @return Smarty current Smarty instance for chaining
*/ */