1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-16 13:44:12 +02:00

[ticket/12715] Cleanup comments in \phpbb\auth\provider\*

PHPBB3-12715
This commit is contained in:
Tristan Darricau
2014-06-14 16:42:49 +02:00
parent 3a96c5b753
commit d7b9e33b94
6 changed files with 16 additions and 17 deletions

View File

@@ -21,22 +21,22 @@ class facebook extends base
/**
* phpBB config
*
* @var phpbb\config\config
* @var \phpbb\config\config
*/
protected $config;
/**
* phpBB request
*
* @var phpbb\request\request_interface
* @var \phpbb\request\request_interface
*/
protected $request;
/**
* Constructor
*
* @param phpbb\config\config $config
* @param phpbb\request\request_interface $request
* @param \phpbb\config\config $config
* @param \phpbb\request\request_interface $request
*/
public function __construct(\phpbb\config\config $config, \phpbb\request\request_interface $request)
{

View File

@@ -21,22 +21,22 @@ class google extends base
/**
* phpBB config
*
* @var phpbb\config\config
* @var \phpbb\config\config
*/
protected $config;
/**
* phpBB request
*
* @var phpbb\request\request_interface
* @var \phpbb\request\request_interface
*/
protected $request;
/**
* Constructor
*
* @param phpbb\config\config $config
* @param phpbb\request\request_interface $request
* @param \phpbb\config\config $config
* @param \phpbb\request\request_interface $request
*/
public function __construct(\phpbb\config\config $config, \phpbb\request\request_interface $request)
{

View File

@@ -67,7 +67,7 @@ interface service_interface
/**
* Sets the external library service provider
*
* @param \OAuth\Common\Service\ServiceInterface $service
* @param \OAuth\Common\Service\ServiceInterface $service_provider
*/
public function set_external_service_provider(\OAuth\Common\Service\ServiceInterface $service_provider);
}