1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-18 22:41:28 +02:00

[ticket/16008] Properly order get_external_service_provider

PHPBB3-16008
This commit is contained in:
mrgoldy
2019-05-05 20:37:05 +02:00
committed by Marc Alexander
parent 85910fe5bc
commit 95a696c4da
2 changed files with 11 additions and 11 deletions

View File

@@ -44,16 +44,16 @@ abstract class base implements service_interface
/**
* {@inheritdoc}
*/
public function set_external_service_provider(\OAuth\Common\Service\ServiceInterface $service_provider)
public function get_external_service_provider()
{
$this->service_provider = $service_provider;
return $this->service_provider;
}
/**
* {@inheritdoc}
*/
public function get_external_service_provider()
public function set_external_service_provider(\OAuth\Common\Service\ServiceInterface $service_provider)
{
return $this->service_provider;
$this->service_provider = $service_provider;
}
}