* 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 = [])
$this->validate($options);
}
-
/**
* Validate this access token response for OIDC.
* As per https://openid.net/specs/openid-connect-basic-1_0.html#TokenOK.
{
return $this->getValues()['id_token'];
}
-
-}
\ No newline at end of file
+}