]> BookStack Code Mirror - bookstack/blobdiff - app/Exceptions/NotifyException.php
Fixed failing webhook test cases
[bookstack] / app / Exceptions / NotifyException.php
index efca625708b75ef2509d4f9790664c8ab3c18d24..8e748a21dc77ed17301610d6f6e1f877de4ac53e 100644 (file)
@@ -1,4 +1,6 @@
-<?php namespace BookStack\Exceptions;
+<?php
+
+namespace BookStack\Exceptions;
 
 use Exception;
 use Illuminate\Contracts\Support\Responsable;
@@ -11,7 +13,7 @@ class NotifyException extends Exception implements Responsable
     /**
      * NotifyException constructor.
      */
-    public function __construct(string $message, string $redirectLocation = "/")
+    public function __construct(string $message, string $redirectLocation = '/')
     {
         $this->message = $message;
         $this->redirectLocation = $redirectLocation;
@@ -20,7 +22,8 @@ class NotifyException extends Exception implements Responsable
 
     /**
      * Send the response for this type of exception.
-     * @inheritdoc
+     *
+     * {@inheritdoc}
      */
     public function toResponse($request)
     {