diff options
| author | Tristan Darricau <github@nicofuma.fr> | 2014-08-09 15:55:40 +0200 |
|---|---|---|
| committer | Tristan Darricau <github@nicofuma.fr> | 2014-08-11 01:16:18 +0200 |
| commit | d73d606f11897f13e3779c76261be6f96139f0e0 (patch) | |
| tree | 3de35c5f3510d54f344b865310a086216e11c924 /phpBB/phpbb/captcha/factory.php | |
| parent | 577f9ac7e4989258b7925bc1b9c15986f7dfd748 (diff) | |
| download | forums-d73d606f11897f13e3779c76261be6f96139f0e0.tar forums-d73d606f11897f13e3779c76261be6f96139f0e0.tar.gz forums-d73d606f11897f13e3779c76261be6f96139f0e0.tar.bz2 forums-d73d606f11897f13e3779c76261be6f96139f0e0.tar.xz forums-d73d606f11897f13e3779c76261be6f96139f0e0.zip | |
[ticket/11854] Fix various comments
PHPBB3-11854
Diffstat (limited to 'phpBB/phpbb/captcha/factory.php')
| -rw-r--r-- | phpBB/phpbb/captcha/factory.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/phpbb/captcha/factory.php b/phpBB/phpbb/captcha/factory.php index 6164b12e85..838f8a4ccd 100644 --- a/phpBB/phpbb/captcha/factory.php +++ b/phpBB/phpbb/captcha/factory.php @@ -40,8 +40,12 @@ class factory $this->plugins = $plugins; } - //static public function get_instance($name) - + /** + * Return a new instance of a given plugin + * + * @param $name + * @return object + */ public function get_instance($name) { return $this->container->get($name); |
