phpBB

Code Changes

File: phpbb/auth/provider/oauth/service/base.php

  Unmodified   Added   Modified   Removed
Line 16Line 16
/**
* Base OAuth abstract class that all OAuth services should implement
*/

/**
* Base OAuth abstract class that all OAuth services should implement
*/

abstract class base implements \phpbb\auth\provider\oauth\service\service_interface

abstract class base implements service_interface

{
/**
* External OAuth service provider

{
/**
* External OAuth service provider

Line 28Line 28
	/**
* {@inheritdoc}
*/

	/**
* {@inheritdoc}
*/

	public function get_external_service_provider()

	public function get_auth_scope()

	{

	{

		return $this->service_provider;

		return [];

	}

/**
* {@inheritdoc}
*/

	}

/**
* {@inheritdoc}
*/

	public function get_auth_scope()

	public function get_external_service_class()

	{

	{

		return array();









		return '';
}

/**
* {@inheritdoc}
*/
public function get_external_service_provider()
{
return $this->service_provider;

	}

/**

	}

/**