Merge pull request #8694 from eileenmcnaughton/unhurt-my-server
[civicrm-core.git] / CRM / Queue / ErrorPolicy.php
index da2e296668d5531c32f7cf7c932aa4872496c7c0..0fbea745cef36904c523d1f86049e2b03d261fa8 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2015                                |
+ | Copyright CiviCRM LLC (c) 2004-2016                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -113,9 +113,17 @@ class CRM_Queue_ErrorPolicy {
   }
 
   /**
-   * Receive (semi) recoverable error notices
+   * Receive (semi) recoverable error notices.
    *
    * @see set_error_handler
+   *
+   * @param string $errno
+   * @param string $errstr
+   * @param string $errfile
+   * @param int $errline
+   *
+   * @return bool
+   * @throws \Exception
    */
   public function onError($errno, $errstr, $errfile, $errline) {
     if (!(error_reporting() & $errno)) {