[ticket/17414] Improve docblocks in legacy wrapper

PHPBB-17414
This commit is contained in:
Marc Alexander 2024-10-20 09:04:36 +02:00
parent fa66bc5150
commit 08ab64a3b2
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -15,8 +15,10 @@ namespace phpbb\captcha\plugins;
class legacy_wrapper implements plugin_interface
{
/** @var object Legacy CAPTCHA instance, should implement functionality as required in phpBB 3.3 */
private $legacy_captcha;
/** @var 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
{
if (method_exists($this->legacy_captcha, 'acp_page'))