ScheduledJob cleanup, remove unused var
authorColeman Watts <coleman@civicrm.org>
Thu, 16 Jul 2020 15:28:21 +0000 (11:28 -0400)
committerColeman Watts <coleman@civicrm.org>
Thu, 16 Jul 2020 15:28:21 +0000 (11:28 -0400)
CRM/Core/ScheduledJob.php

index fbf0bfd5b84814c4c87c37505769ee3a4537aa71..71efa5536c70f0cf532ff0ff4c0aec7368ac80e8 100644 (file)
@@ -61,23 +61,22 @@ class CRM_Core_ScheduledJob {
   }
 
   /**
-   * @param null $date
+   * Update the last_run date of this job
    */
-  public function saveLastRun($date = NULL) {
+  public function saveLastRun() {
     $dao = new CRM_Core_DAO_Job();
     $dao->id = $this->id;
-    $dao->last_run = ($date == NULL) ? CRM_Utils_Date::currentDBDate() : CRM_Utils_Date::currentDBDate($date);
+    $dao->last_run = CRM_Utils_Date::currentDBDate();
     $dao->save();
   }
 
   /**
-   * @return void
+   * Delete the scheduled_run_date from this job
    */
   public function clearScheduledRunDate() {
-    CRM_Core_DAO::executeQuery('UPDATE civicrm_job SET scheduled_run_date = NULL WHERE id = %1',
-      [
-        '1' => [$this->id, 'Integer'],
-      ]);
+    CRM_Core_DAO::executeQuery('UPDATE civicrm_job SET scheduled_run_date = NULL WHERE id = %1', [
+      '1' => [$this->id, 'Integer'],
+    ]);
   }
 
   /**