From b1b10a5d3fc44f22b092e20882afea389f2607b5 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Fri, 19 Aug 2022 07:35:20 +0000 Subject: [PATCH] Fixing style errors. --- htdocs/cron/class/cronjob.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/cron/class/cronjob.class.php b/htdocs/cron/class/cronjob.class.php index 200cf8a369f..714622e8014 100644 --- a/htdocs/cron/class/cronjob.class.php +++ b/htdocs/cron/class/cronjob.class.php @@ -718,7 +718,7 @@ class Cronjob extends CommonObject } if (empty($this->pid)) { - $this->pid = NULL; + $this->pid = null; } // Check parameters @@ -939,7 +939,7 @@ class Cronjob extends CommonObject $this->frequency = ''; $this->status = 0; $this->processing = 0; - $this->pid = NULL; + $this->pid = null; $this->fk_user_author = 0; $this->fk_user_mod = 0; $this->note_private = ''; @@ -1332,7 +1332,7 @@ class Cronjob extends CommonObject $this->datelastresult = dol_now(); $this->processing = 0; - $this->pid = NULL; + $this->pid = null; $result = $this->update($user); // This include begin/commit if ($result < 0) { dol_syslog(get_class($this)."::run_jobs ".$this->error, LOG_ERR);