Merge pull request #6414 from eileenmcnaughton/CRM-16967
[civicrm-core.git] / CRM / Core / JobManager.php
index 6a95b94c5f23d1eeb7377285e42925b5a85e4c28..732facc95cc759f8782a68cd66616c7c16f62a99 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * This interface defines methods that need to be implemented
  * by every scheduled job (cron task) in CiviCRM.
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
+ * @copyright CiviCRM LLC (c) 2004-2015
  * $Id$
  *
  */
@@ -52,7 +52,7 @@ class CRM_Core_JobManager {
 
 
   /**
-   * Class constructor
+   * Class constructor.
    *
    * @return void
    */
@@ -88,7 +88,7 @@ class CRM_Core_JobManager {
   }
 
   /**
-   * Class destructor
+   * Class destructor.
    */
   public function __destruct() {
   }
@@ -159,7 +159,7 @@ class CRM_Core_JobManager {
   }
 
   /**
-   * Retrieves specific job from the database by id
+   * Retrieves specific job from the database by id.
    * and creates ScheduledJob object.
    *
    * @param int $id
@@ -255,6 +255,7 @@ class CRM_Core_JobManager {
     $message = $apiResult['is_error'] ? ', Error message: ' . $msg : " (" . $vals . ")";
     return $status . $message;
   }
+
 }
 
 /**