diff options
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/service/microsoft.php')
| -rw-r--r-- | phpBB/phpbb/auth/provider/oauth/service/microsoft.php | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/service/microsoft.php b/phpBB/phpbb/auth/provider/oauth/service/microsoft.php deleted file mode 100644 index d607f3392d..0000000000 --- a/phpBB/phpbb/auth/provider/oauth/service/microsoft.php +++ /dev/null @@ -1,62 +0,0 @@ -<?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; -} - -/** -* Microsoft OAuth service -* -* @package auth -*/ -class phpbb_auth_provider_oauth_service_microsoft extends phpbb_auth_provider_oauth_service_base -{ - /** - * phpBB config - * - * @var phpbb_config - */ - protected $config; - - /** - * Constructor - * - * @param phpbb_config $config - */ - public function __construct(phpbb_config $config) - { - $this->config = $config; - } - - /** - * {@inheritdoc} - */ - public function get_auth_scope() - { - return array( - 'basic', - ); - } - - /** - * {@inheritdoc} - */ - public function get_service_credentials() - { - return array( - 'key' => $this->config['auth_oauth_microsoft_key'], - 'secret' => $this->config['auth_oauth_microsoft_secret'], - ); - } -} |
