1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/13713] Create properly named base services for sources

PHPBB3-13713
This commit is contained in:
lavigor
2018-06-09 20:39:52 +03:00
committed by Marc Alexander
parent 52fac451a3
commit a21c115bf3
10 changed files with 302 additions and 253 deletions

View File

@@ -13,21 +13,8 @@
namespace phpbb\mention\source;
class usergroup extends group
class usergroup extends base_group
{
/** @var \phpbb\user */
protected $user;
/**
* Constructor
*/
public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\group\helper $helper, \phpbb\user $user, $phpbb_root_path, $phpEx)
{
$this->user = $user;
parent::__construct($db, $helper, $phpbb_root_path, $phpEx);
}
/**
* {@inheritdoc}
*/