8
0
miroir de https://git.d3data.de/3rdParty/captcha-module.git synchronisé 2024-09-12 10:00:25 +02:00
captcha-module/Application/Controller/ForgotPasswordController.php
2023-07-18 14:59:11 +00:00

22 lignes
438 B
PHP

<?php
declare(strict_types=1);
namespace OxidProfessionalServices\Captcha\Application\Controller;
use OxidProfessionalServices\Captcha\Application\Shared\Captcha;
class ForgotPasswordController extends ForgotPasswordController_parent
{
use Captcha;
public function forgotpassword()
{
if (!$this->getCaptcha()->passCaptcha()) {
return false;
}
return parent::forgotpassword();
}
}