CRM-21787: Keep up-to-date without running GenCode on all builds
[civicrm-core.git] / CRM / Core / TemporaryErrorScope.php
index 6ab382b1d0c136765b60e5d6a7fd8de5632981a0..7f78496083669e2401bf87956ff5f15ca1da4b90 100644 (file)
@@ -79,10 +79,13 @@ class CRM_Core_TemporaryErrorScope {
 
   /**
    * Set the active error-handler settings
+   *
+   * @param string $frame
    */
   public static function setActive($frame) {
     $GLOBALS['_PEAR_default_error_mode'] = $frame['_PEAR_default_error_mode'];
     $GLOBALS['_PEAR_default_error_options'] = $frame['_PEAR_default_error_options'];
     CRM_Core_Error::$modeException = $frame['modeException'];
   }
+
 }