]> BookStack Code Mirror - bookstack/blobdiff - app/Auth/Access/Oidc/OidcAccessToken.php
Guest create page: name field autofocus
[bookstack] / app / Auth / Access / Oidc / OidcAccessToken.php
index 63853e08ab07a411c401ffc1c9975254a9d5a26b..520966f6ae420020087bb123b7f488dd69b13486 100644 (file)
@@ -11,7 +11,8 @@ class OidcAccessToken extends AccessToken
      * Constructs an access token.
      *
      * @param array $options An array of options returned by the service provider
-     *     in the access token request. The `access_token` option is required.
+     *                       in the access token request. The `access_token` option is required.
+     *
      * @throws InvalidArgumentException if `access_token` is not provided in `$options`.
      */
     public function __construct(array $options = [])
@@ -20,7 +21,6 @@ class OidcAccessToken extends AccessToken
         $this->validate($options);
     }
 
-
     /**
      * Validate this access token response for OIDC.
      * As per https://openid.net/specs/openid-connect-basic-1_0.html#TokenOK.
@@ -50,5 +50,4 @@ class OidcAccessToken extends AccessToken
     {
         return $this->getValues()['id_token'];
     }
-
-}
\ No newline at end of file
+}