Merge pull request #5992 from colemanw/CRM-16306
[civicrm-core.git] / CRM / Queue / ErrorPolicy.php
index f642ea8e66ec85f67c70af09c13f1feb70129bd3..9a3a97b0964cc6589ca6b5538570168337e869d7 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.                                    |
  |                                                                    |
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * To ensure that PHP errors or unhandled exceptions are reported in JSON
@@ -141,7 +141,7 @@ class CRM_Queue_ErrorPolicy {
   }
 
   /**
-   * Print a fatal error
+   * Print a fatal error.
    *
    * @param array $error
    *   The PHP error (with "type", "message", etc).
@@ -162,7 +162,7 @@ class CRM_Queue_ErrorPolicy {
   }
 
   /**
-   * Print an unhandled exception
+   * Print an unhandled exception.
    *
    * @param Exception $e
    *   The unhandled exception.
@@ -189,4 +189,5 @@ class CRM_Queue_ErrorPolicy {
     }
     CRM_Utils_JSON::output($response);
   }
+
 }