8
0
Mirror von https://git.d3data.de/3rdParty/captcha-module.git synchronisiert 2025-04-18 12:01:34 +02:00
2023-07-19 09:05:40 +00:00

18 Zeilen
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();
}
}