aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/feed/factory.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-15 13:37:28 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-15 19:14:42 +0200
commitdf041c108684ec05c2bd7edf2a9de684bdf48af5 (patch)
tree760abc92528284562f6dc653fa14487d6f944ba8 /phpBB/phpbb/feed/factory.php
parent047b709c4706ea7514eff1124569702693a6acf6 (diff)
downloadforums-df041c108684ec05c2bd7edf2a9de684bdf48af5.tar
forums-df041c108684ec05c2bd7edf2a9de684bdf48af5.tar.gz
forums-df041c108684ec05c2bd7edf2a9de684bdf48af5.tar.bz2
forums-df041c108684ec05c2bd7edf2a9de684bdf48af5.tar.xz
forums-df041c108684ec05c2bd7edf2a9de684bdf48af5.zip
[ticket/12715] Cleanup comments in \phpbb\feed\*
PHPBB3-12715
Diffstat (limited to 'phpBB/phpbb/feed/factory.php')
-rw-r--r--phpBB/phpbb/feed/factory.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/phpBB/phpbb/feed/factory.php b/phpBB/phpbb/feed/factory.php
index 84b4d5d560..f364f06d03 100644
--- a/phpBB/phpbb/feed/factory.php
+++ b/phpBB/phpbb/feed/factory.php
@@ -13,6 +13,8 @@
namespace phpbb\feed;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+
/**
* Factory class to return correct object
*/
@@ -20,7 +22,7 @@ class factory
{
/**
* Service container object
- * @var object
+ * @var ContainerInterface
*/
protected $container;
@@ -33,12 +35,11 @@ class factory
/**
* Constructor
*
- * @param objec $container Container object
- * @param \phpbb\config\config $config Config object
+ * @param ContainerInterface $container Container object
+ * @param \phpbb\config\config $config Config object
* @param \phpbb\db\driver\driver_interface $db Database connection
- * @return null
*/
- public function __construct($container, \phpbb\config\config $config, \phpbb\db\driver\driver_interface $db)
+ public function __construct(ContainerInterface $container, \phpbb\config\config $config, \phpbb\db\driver\driver_interface $db)
{
$this->container = $container;
$this->config = $config;