From 6256e824ea80ebe7b62ba8081f8892e98327ac92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Tue, 1 Feb 2022 18:14:58 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Brandon --- src/Appwrite/Utopia/Response/Model/Session.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Appwrite/Utopia/Response/Model/Session.php b/src/Appwrite/Utopia/Response/Model/Session.php index 5f32e15451..67ea3c172b 100644 --- a/src/Appwrite/Utopia/Response/Model/Session.php +++ b/src/Appwrite/Utopia/Response/Model/Session.php @@ -42,13 +42,13 @@ class Session extends Model ]) ->addRule('providerAccessToken', [ 'type' => self::TYPE_STRING, - 'description' => 'Session Provider AccessToken.', + 'description' => 'Session Provider Access Token.', 'default' => '', 'example' => 'MTQ0NjJkZmQ5OTM2NDE1ZTZjNGZmZjI3', ]) ->addRule('providerAccessTokenExpiry', [ 'type' => self::TYPE_INTEGER, - 'description' => 'Date, the user has accepted the invitation to join the team in Unix timestamp.', + 'description' => 'Date, the Unix timestamp of when the access token expires', 'default' => 0, 'example' => 1592981250, ])