Merge pull request #5800 from mallezie/convert-addressform-addfield
[civicrm-core.git] / CRM / Queue / TaskContext.php
index 9672910c6723a8ac66f03889165ca6bc698ad317..ad83420387aef2d15cb1e66a96806dfc6e4f206a 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * Describe the runtime environment in which a queue task executes
@@ -33,11 +33,11 @@ class CRM_Queue_TaskContext {
   /**
    * @var CRM_Queue_Queue
    */
-  var $queue;
+  public $queue;
 
   /**
    * @var Log
    */
-  var $log;
-}
+  public $log;
 
+}