mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/17414] Improve docblocks in legacy wrapper
PHPBB-17414
This commit is contained in:
parent
fa66bc5150
commit
08ab64a3b2
1 changed files with 5 additions and 0 deletions
|
@ -15,8 +15,10 @@ namespace phpbb\captcha\plugins;
|
||||||
|
|
||||||
class legacy_wrapper implements plugin_interface
|
class legacy_wrapper implements plugin_interface
|
||||||
{
|
{
|
||||||
|
/** @var object Legacy CAPTCHA instance, should implement functionality as required in phpBB 3.3 */
|
||||||
private $legacy_captcha;
|
private $legacy_captcha;
|
||||||
|
|
||||||
|
/** @var string Last error */
|
||||||
private string $last_error;
|
private string $last_error;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -206,6 +208,9 @@ class legacy_wrapper implements plugin_interface
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
public function acp_page($id, $module): void
|
public function acp_page($id, $module): void
|
||||||
{
|
{
|
||||||
if (method_exists($this->legacy_captcha, 'acp_page'))
|
if (method_exists($this->legacy_captcha, 'acp_page'))
|
||||||
|
|
Loading…
Add table
Reference in a new issue