mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-03 07:18:08 +02:00
[ticket/17414] Improve docblocks in legacy wrapper
PHPBB-17414
This commit is contained in:
@@ -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'))
|
||||||
|
Reference in New Issue
Block a user