diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-08-10 15:02:55 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-08-11 01:16:50 +0200 |
commit | fc4b1090cc9685efd0ac98bac9bff2582f0b6858 (patch) | |
tree | 2ccad7916562432f7a115086bf028987123a5888 /phpBB/phpbb | |
parent | 351a6dcad245ce302def5952e631df6bad9c694d (diff) | |
download | forums-fc4b1090cc9685efd0ac98bac9bff2582f0b6858.tar forums-fc4b1090cc9685efd0ac98bac9bff2582f0b6858.tar.gz forums-fc4b1090cc9685efd0ac98bac9bff2582f0b6858.tar.bz2 forums-fc4b1090cc9685efd0ac98bac9bff2582f0b6858.tar.xz forums-fc4b1090cc9685efd0ac98bac9bff2582f0b6858.zip |
[ticket/11854] Fix comments
PHPBB3-11854
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/captcha/factory.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/phpBB/phpbb/captcha/factory.php b/phpBB/phpbb/captcha/factory.php index 19c2f46e89..dd44aca8bb 100644 --- a/phpBB/phpbb/captcha/factory.php +++ b/phpBB/phpbb/captcha/factory.php @@ -13,9 +13,6 @@ namespace phpbb\captcha; -/** -* A small class for 3.0.x (no autoloader in 3.0.x) -*/ class factory { /** @@ -53,6 +50,8 @@ class factory /** * Call the garbage collector + * + * @param string $name The name to the captcha service. */ function garbage_collect($name) { @@ -61,7 +60,9 @@ class factory } /** - * return a list of all registered CAPTCHA plugins + * Return a list of all registered CAPTCHA plugins + * + * @returns array */ function get_captcha_types() { |