various comment fixes
[civicrm-core.git] / Civi / Core / Event / UnhandledExceptionEvent.php
index f2f5b4528e3bc49575ad6e55742e000e44ec3e06..42270723b0ad494e517673ba8d5bf74d04573376 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        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 namespace Civi\Core\Event;
 
@@ -43,8 +43,13 @@ class UnhandledExceptionEvent extends \Symfony\Component\EventDispatcher\Event {
    */
   public $request;
 
-  function __construct($e, $request) {
+  /**
+   * @param $e
+   * @param $request
+   */
+  public function __construct($e, $request) {
     $this->request = $request;
     $this->exception = $e;
   }
+
 }