]> BookStack Code Mirror - bookstack/blobdiff - app/Exceptions/UserTokenExpiredException.php
respective book and chapter structure added.
[bookstack] / app / Exceptions / UserTokenExpiredException.php
index 203e08c8573100786f00728cc65d6c4b7c74b0a0..635337c3d072c14eb50344af154f30befc7dc71b 100644 (file)
@@ -1,19 +1,20 @@
-<?php namespace BookStack\Exceptions;
+<?php
 
-class UserTokenExpiredException extends \Exception {
+namespace BookStack\Exceptions;
 
+class UserTokenExpiredException extends \Exception
+{
     public $userId;
 
     /**
      * UserTokenExpiredException constructor.
+     *
      * @param string $message
-     * @param int $userId
+     * @param int    $userId
      */
     public function __construct(string $message, int $userId)
     {
         $this->userId = $userId;
         parent::__construct($message);
     }
-
-
-}
\ No newline at end of file
+}