8
0
Mirror von https://git.d3data.de/3rdParty/captcha-module.git synchronisiert 2025-04-22 13:51:37 +02:00
2023-07-18 14:59:11 +00:00

22 Zeilen
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;
}
}