Fix phpcs

This commit is contained in:
Laurent Destailleur 2018-06-30 18:38:23 +02:00
parent a502271029
commit e06eb9e2fc
2 changed files with 8 additions and 8 deletions

View File

@ -121,12 +121,12 @@ class mod_holiday_immaculate extends ModelNumRefHolidays
/**
* Return next value
*
* @param Societe $objsoc third party object
* @param Object $objforref contract object
* @param User $fuser User object
* @param Object $objforref Holiday object
* @return string Value if OK, 0 if KO
*/
function holiday_get_num($user, $objforref)
function holiday_get_num($fuser, $objforref)
{
return $this->getNextValue($user, $objforref);
return $this->getNextValue($fuser, $objforref);
}
}

View File

@ -136,13 +136,13 @@ class mod_holiday_madonna extends ModelNumRefHolidays
/**
* Return next value
*
* @param Societe $objsoc third party object
* @param Object $objforref contract object
* @param User $fuser User object
* @param Object $objforref Holiday object
* @return string Value if OK, 0 if KO
*/
function holiday_get_num($objsoc,$objforref)
function holiday_get_num($fuser,$objforref)
{
return $this->getNextValue($objsoc,$objforref);
return $this->getNextValue($fuser,$objforref);
}
}