mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-13 06:48:52 +00:00
[feature/oauth] Fix fatal error
PHPBB3-11673
This commit is contained in:
parent
a673eb8cbc
commit
0f292f70c7
1 changed files with 3 additions and 3 deletions
|
@ -77,7 +77,7 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base
|
||||||
/**
|
/**
|
||||||
* All OAuth service providers
|
* All OAuth service providers
|
||||||
*
|
*
|
||||||
* @var array Contains phpbb_auth_provider_oauth_service_interface
|
* @var phpbb_di_service_collection Contains phpbb_auth_provider_oauth_service_interface
|
||||||
*/
|
*/
|
||||||
protected $service_providers;
|
protected $service_providers;
|
||||||
|
|
||||||
|
@ -97,9 +97,9 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base
|
||||||
* @param phpbb_user $user
|
* @param phpbb_user $user
|
||||||
* @param string $auth_provider_oauth_token_storage_table
|
* @param string $auth_provider_oauth_token_storage_table
|
||||||
* @param string $auth_provider_oauth_token_account_assoc
|
* @param string $auth_provider_oauth_token_account_assoc
|
||||||
* @param phpbb_auth_provider_oauth_service_interface $service_providers
|
* @param phpbb_di_service_collection $service_providers Contains phpbb_auth_provider_oauth_service_interface
|
||||||
*/
|
*/
|
||||||
public function __construct(phpbb_db_driver $db, phpbb_config $config, phpbb_request $request, phpbb_user $user, $auth_provider_oauth_token_storage_table, $auth_provider_oauth_token_account_assoc, phpbb_auth_provider_oauth_service_interface $service_providers)
|
public function __construct(phpbb_db_driver $db, phpbb_config $config, phpbb_request $request, phpbb_user $user, $auth_provider_oauth_token_storage_table, $auth_provider_oauth_token_account_assoc, phpbb_di_service_collection $service_providers)
|
||||||
{
|
{
|
||||||
$this->db = $db;
|
$this->db = $db;
|
||||||
$this->config = $config;
|
$this->config = $config;
|
||||||
|
|
Loading…
Add table
Reference in a new issue