dev/core#389 Fix custom data relative date searching
[civicrm-core.git] / CRM / Core / ScheduledJob.php
index f08e112d3239fe086446dc1a272ed17fa95db2c8..87ec71d94f27452e677112952e754ff6de3b8a6d 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 5                                                  |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2018                                |
+ | Copyright CiviCRM LLC (c) 2004-2019                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
  * by every scheduled job (cron task) in CiviCRM.
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2018
+ * @copyright CiviCRM LLC (c) 2004-2019
  * $Id$
  *
  */
 class CRM_Core_ScheduledJob {
 
-  var $version = 3;
+  public $version = 3;
 
-  var $name = NULL;
+  public $name = NULL;
 
-  var $apiParams = array();
+  public $apiParams = [];
 
-  var $remarks = array();
+  public $remarks = [];
 
   /**
    * @param array $params
@@ -60,7 +60,7 @@ class CRM_Core_ScheduledJob {
     // testing in the cron job setup. To permanenty require
     // hardcoded api version, it's enough to move below line
     // under following if block.
-    $this->apiParams = array('version' => $this->version);
+    $this->apiParams = ['version' => $this->version];
 
     if (!empty($this->parameters)) {
       $lines = explode("\n", $this->parameters);
@@ -91,9 +91,9 @@ class CRM_Core_ScheduledJob {
    */
   public function clearScheduledRunDate() {
     CRM_Core_DAO::executeQuery('UPDATE civicrm_job SET scheduled_run_date = NULL WHERE id = %1',
-      array(
-        '1' => array($this->id, 'Integer'),
-      ));
+      [
+        '1' => [$this->id, 'Integer'],
+      ]);
   }
 
   /**