Current path: home/webdevt/cryptoimpot.fr/module/Application/src/Form/Element/
?? Go up: /home/webdevt/cryptoimpot.fr/module/Application/src/Form
<?php
namespace Application\Form\Element;
use Laminas\Form\Element;
class ReCaptcha extends Element
{
const ELEMENT_TYPE = 'recaptcha';
protected $attributes = [
'type' => self::ELEMENT_TYPE,
];
private $secret;
public function getSecret(): string
{
return $this->secret;
}
public function __construct(string $secret)
{
parent::__construct();
$this->secret = $secret;
}
}