1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-05 15:16:16 +02:00

[ticket/13645] Fix docblocks

PHPBB3-13645
This commit is contained in:
Tristan Darricau 2015-08-10 09:38:26 +02:00
parent 5df9a45473
commit c9ec16f614

View File

@ -83,7 +83,8 @@ class feed
/** /**
* Constructor * Constructor
* *
* @param symfony_request $request; * @param \Twig_Environment $twig
* @param symfony_request $request
* @param controller_helper $controller_helper * @param controller_helper $controller_helper
* @param config $config * @param config $config
* @param driver_interface $db * @param driver_interface $db
@ -91,6 +92,7 @@ class feed
* @param feed_helper $feed_helper * @param feed_helper $feed_helper
* @param user $user * @param user $user
* @param auth $auth * @param auth $auth
* @param string $php_ext
*/ */
public function __construct(\Twig_Environment $twig, symfony_request $request, controller_helper $controller_helper, config $config, driver_interface $db, ContainerInterface $container, feed_helper $feed_helper, user $user, auth $auth, $php_ext) public function __construct(\Twig_Environment $twig, symfony_request $request, controller_helper $controller_helper, config $config, driver_interface $db, ContainerInterface $container, feed_helper $feed_helper, user $user, auth $auth, $php_ext)
{ {