8
0
miroir de https://git.d3data.de/3rdParty/captcha-module.git synchronisé 2024-09-19 22:19:47 +02:00
captcha-module/Application/Shared/Captcha.php
2023-07-18 14:59:11 +00:00

22 lignes
420 B
PHP

<?php
declare(strict_types=1);
namespace OxidProfessionalServices\Captcha\Application\Shared;
use OxidProfessionalServices\Captcha\Application\Core\Captcha as CaptchaCore;
trait Captcha
{
protected ?CaptchaCore $captcha;
public function getCaptcha(): CaptchaCore
{
if (!$this->captcha) {
$this->captcha = CaptchaCore::getInstance();
}
return $this->captcha;
}
}