mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/13713] Make sure service collection is accepted by controller
PHPBB3-13713
This commit is contained in:
parent
4f116db48e
commit
643bab44ea
1 changed files with 2 additions and 2 deletions
|
@ -35,12 +35,12 @@ class mention
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
*
|
*
|
||||||
* @param array $mention_sources
|
* @param service_collection|array $mention_sources
|
||||||
* @param request_interface $request
|
* @param request_interface $request
|
||||||
* @param string $phpbb_root_path
|
* @param string $phpbb_root_path
|
||||||
* @param string $phpEx
|
* @param string $phpEx
|
||||||
*/
|
*/
|
||||||
public function __construct(array $mention_sources, request_interface $request, string $phpbb_root_path, string $phpEx)
|
public function __construct($mention_sources, request_interface $request, string $phpbb_root_path, string $phpEx)
|
||||||
{
|
{
|
||||||
$this->mention_sources = $mention_sources;
|
$this->mention_sources = $mention_sources;
|
||||||
$this->request = $request;
|
$this->request = $request;
|
||||||
|
|
Loading…
Add table
Reference in a new issue