-<?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
+}