Merge pull request #5048 from totten/master-mailing-misc
[civicrm-core.git] / CRM / Core / JobManager.php
index 53c6c19a15972e7743683d24ff5da4cede0c1126..5d77cc3df92920edfc471cdc4ca5d78b9b47b622 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
@@ -54,7 +54,7 @@ class CRM_Core_JobManager {
   /**
    * Class constructor
    *
-   * @param void
+   * @return void
    */
   public function __construct() {
     $config = CRM_Core_Config::singleton();
@@ -201,7 +201,7 @@ class CRM_Core_JobManager {
   /**
    * @param string $message
    *
-   * @return array|null
+   * @return void
    *   collection of permissions, null if none
    */
   public function logEntry($message) {
@@ -255,6 +255,7 @@ class CRM_Core_JobManager {
     $message = $apiResult['is_error'] ? ', Error message: ' . $msg : " (" . $vals . ")";
     return $status . $message;
   }
+
 }
 
 /**