From 8a3d7e0411fc447197ef69177400562e8c33f6db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Preu=C3=9F?= Date: Sat, 31 Aug 2019 19:43:33 +0200 Subject: [PATCH] Add api scope enum --- src/Enums/Scope.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/Enums/Scope.php diff --git a/src/Enums/Scope.php b/src/Enums/Scope.php new file mode 100644 index 0000000..f298fc7 --- /dev/null +++ b/src/Enums/Scope.php @@ -0,0 +1,22 @@ + + */ +class Scope +{ + + /* + * v0 API + */ + + // Deprecated scope. + const API = 'api'; + + // Read nonpublic user information, including email address. + const READ_USER = 'read_user'; +} \ No newline at end of file