]> BookStack Code Mirror - bookstack/blobdiff - app/Exceptions/NotifyException.php
Apply fixes from StyleCI
[bookstack] / app / Exceptions / NotifyException.php
index efca625708b75ef2509d4f9790664c8ab3c18d24..ef9a441010f687ba66325fb061a1237ae253e737 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,6 +22,7 @@ class NotifyException extends Exception implements Responsable
 
     /**
      * Send the response for this type of exception.
+     *
      * @inheritdoc
      */
     public function toResponse($request)