From 6aa7f94389618855112a97343065d3d8ae1b321b Mon Sep 17 00:00:00 2001 From: Dmitry Patsura Date: Fri, 28 Apr 2017 17:09:18 +0900 Subject: [PATCH] AccessToken - better support for expires --- AccessTokenInterface.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AccessTokenInterface.php b/AccessTokenInterface.php index 8ffa8b6..063b7fa 100644 --- a/AccessTokenInterface.php +++ b/AccessTokenInterface.php @@ -16,4 +16,9 @@ public function getToken(); * @return integer|null */ public function getUserId(); + + /** + * @return integer|null + */ + public function getExpires(); }