Fixed issue with type

This commit is contained in:
José González 2021-05-05 12:05:06 +02:00
parent 385366a9e1
commit 6570441fd2
1 changed files with 2 additions and 2 deletions

View File

@ -580,7 +580,7 @@ function modules_update_agent_module(
* @param integer $name Module name id.
* @param array $values Extra values for the module.
* @param boolean $disableACL Disable the ACL checking, for default false.
* @param array $tags Array with tag's ids or false.
* @param mixed $tags Array with tag's ids or false.
*
* @return New module id if the module was created. False if not.
*/
@ -589,7 +589,7 @@ function modules_create_agent_module(
int $name,
array $values=[],
bool $disableACL=false,
array $tags=false
$tags=false
) {
global $config;