From 18dcf77a6d7a1b3ef5baedd41d8751c7132c0bcd Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 1 Feb 2023 16:33:07 +0000 Subject: [PATCH] Desciption added --- src/Object/Api/Mastodon/Token.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Object/Api/Mastodon/Token.php b/src/Object/Api/Mastodon/Token.php index c9d6caac0d..706054c982 100644 --- a/src/Object/Api/Mastodon/Token.php +++ b/src/Object/Api/Mastodon/Token.php @@ -44,11 +44,11 @@ class Token extends BaseDataTransferObject /** * Creates a token record * - * @param string $access_token - * @param string $token_type - * @param string $scope - * @param string $created_at - * @param string $me + * @param string $access_token Token string + * @param string $token_type Always "Bearer" + * @param string $scope Combination of "read write follow push" + * @param string $created_at Creation date of the token + * @param string $me Actor profile of the token owner */ public function __construct(string $access_token, string $token_type, string $scope, string $created_at, string $me = null) {