(dev/core#2258) CryptoRegistry - Keep track of available keys+suites. Hookable.
[civicrm-core.git] / Civi / API / Exception / NotImplementedException.php
index 1022fb523a7d52ac416e9215c48b4f40a4a7ed74..b8f253f13ebdde72c4fecf7fc514335a2621ba3b 100644 (file)
@@ -8,6 +8,7 @@ require_once 'api/Exception.php';
  * @package Civi\API\Exception
  */
 class NotImplementedException extends \API_Exception {
+
   /**
    * @param string $message
    *   The human friendly error message.
@@ -18,7 +19,8 @@ class NotImplementedException extends \API_Exception {
    * @param \Exception|NULL $previous
    *   A previous exception which caused this new exception.
    */
-  public function __construct($message, $extraParams = array(), \Exception $previous = NULL) {
+  public function __construct($message, $extraParams = [], \Exception $previous = NULL) {
     parent::__construct($message, \API_Exception::NOT_IMPLEMENTED, $extraParams, $previous);
   }
+
 }