aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/service/base.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-07-14 15:16:34 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-07-14 15:16:34 -0400
commit947aa2b6b442b5e1ce06c755c3e8ebea677f63e3 (patch)
tree59cc5f20e3da47487803010ddbabc87e39fdfe04 /phpBB/phpbb/auth/provider/oauth/service/base.php
parent00d0e102008767f712145f55348a662f3e6750d6 (diff)
downloadforums-947aa2b6b442b5e1ce06c755c3e8ebea677f63e3.tar
forums-947aa2b6b442b5e1ce06c755c3e8ebea677f63e3.tar.gz
forums-947aa2b6b442b5e1ce06c755c3e8ebea677f63e3.tar.bz2
forums-947aa2b6b442b5e1ce06c755c3e8ebea677f63e3.tar.xz
forums-947aa2b6b442b5e1ce06c755c3e8ebea677f63e3.zip
[feature/oauth] Create OAuth service classes
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/service/base.php')
-rw-r--r--phpBB/phpbb/auth/provider/oauth/service/base.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/service/base.php b/phpBB/phpbb/auth/provider/oauth/service/base.php
new file mode 100644
index 0000000000..98a1fa16e4
--- /dev/null
+++ b/phpBB/phpbb/auth/provider/oauth/service/base.php
@@ -0,0 +1,32 @@
+<?php
+/**
+*
+* @package auth
+* @copyright (c) 2013 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+
+/**
+* @ignore
+*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
+/**
+* Bitly OAuth service
+*
+* @package auth
+*/
+abstract class phpbb_auth_provider_oauth_service_base implements phpbb_auth_provider_oauth_service_interface
+{
+ /**
+ * {@inheritdoc}
+ */
+ public function get_auth_scope()
+ {
+ return array();
+ }
+}