1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-04 05:25:01 +02:00

[ticket/13713] Make sure service collection is accepted by controller

PHPBB3-13713
This commit is contained in:
Marc Alexander 2021-05-15 22:23:42 +02:00
parent 4f116db48e
commit 643bab44ea
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -35,12 +35,12 @@ class mention
/**
* Constructor
*
* @param array $mention_sources
* @param service_collection|array $mention_sources
* @param request_interface $request
* @param string $phpbb_root_path
* @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->request = $request;