miroir de
https://git.d3data.de/3rdParty/captcha-module.git
synchronisé 2025-04-11 00:21:37 +02:00
18 lignes
356 B
PHP
18 lignes
356 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OxidProfessionalServices\Captcha\Application\Shared;
|
|
|
|
use OxidProfessionalServices\Captcha\Application\Core\Captcha as CaptchaCore;
|
|
|
|
trait Captcha
|
|
{
|
|
protected ?CaptchaCore $oeCaptcha;
|
|
|
|
public function getCaptcha(): CaptchaCore
|
|
{
|
|
return $this->oeCaptcha ??= CaptchaCore::getInstance();
|
|
}
|
|
}
|