Fixing style errors.

This commit is contained in:
stickler-ci 2021-06-10 19:56:03 +00:00
parent 1e7df0ba9f
commit 82feb57fcf

View File

@ -140,20 +140,20 @@ class modHoliday extends DolibarrModules
$datestart = dol_mktime(4, 0, 0, $arraydate['mon'], $arraydate['mday'], $arraydate['year']); $datestart = dol_mktime(4, 0, 0, $arraydate['mon'], $arraydate['mday'], $arraydate['year']);
$this->cronjobs = array( $this->cronjobs = array(
0 => array( 0 => array(
'label' => 'HolidayBalanceMonthlyUpdate', 'label' => 'HolidayBalanceMonthlyUpdate',
'jobtype' => 'method', 'jobtype' => 'method',
'class' => 'holiday/class/holiday.class.php', 'class' => 'holiday/class/holiday.class.php',
'objectname' => 'Holiday', 'objectname' => 'Holiday',
'method' => 'updateBalance', 'method' => 'updateBalance',
'parameters' => '', 'parameters' => '',
'comment' => 'Update holiday balance every month', 'comment' => 'Update holiday balance every month',
'frequency' => 1, 'frequency' => 1,
'unitfrequency' => 3600 * 24, 'unitfrequency' => 3600 * 24,
'priority' => 50, 'priority' => 50,
'status' => 1, 'status' => 1,
'test' => '$conf->holiday->enabled', 'test' => '$conf->holiday->enabled',
'datestart' => $datestart 'datestart' => $datestart
) )
); );