INFRA-132 add full stops
[civicrm-core.git] / CRM / Core / JobManager.php
index 6a95b94c5f23d1eeb7377285e42925b5a85e4c28..6798a12f832f365b53c39642fcfa17e3ac95cf37 100644 (file)
@@ -23,7 +23,7 @@
  | 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
@@ -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;
   }
+
 }
 
 /**