mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 22:08:54 +00:00
[feature/oauth] Update class name based on last commit
PHPBB3-11673
This commit is contained in:
parent
117a758f66
commit
a43a8f8c72
2 changed files with 2 additions and 2 deletions
|
@ -124,7 +124,7 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base
|
|||
);
|
||||
}
|
||||
|
||||
$storage = new phpbb_auth_oauth_token_storage($this->db, $this->user, $service_name, $this->auth_provider_oauth_table);
|
||||
$storage = new phpbb_auth_provider_oauth_token_storage($this->db, $this->user, $service_name, $this->auth_provider_oauth_table);
|
||||
$service = $this->get_service($service_name, $storage, $service_credentials, $this->get_scopes($service_name));
|
||||
|
||||
if ($this->request->is_set('code', phpbb_request_interface::GET))
|
||||
|
|
|
@ -26,7 +26,7 @@ use OAuth\Common\Storage\Exception\TokenNotFoundException;
|
|||
*
|
||||
* @package auth
|
||||
*/
|
||||
class phpbb_auth_oauth_token_storage implements TokenStorageInterface
|
||||
class phpbb_auth_provider_oauth_token_storage implements TokenStorageInterface
|
||||
{
|
||||
/**
|
||||
* Cache driver.
|
||||
|
|
Loading…
Add table
Reference in a new issue