?? GreyFile — Mystic File Browser

Current path: home/webdevt/cryptoimpot.fr/module/Application/src/Factory/Form/Element/



?? Go up: /home/webdevt/cryptoimpot.fr/module/Application/src/Factory/Form

?? Viewing: ReCaptchaFactory.php

<?php
namespace Application\Factory\Form\Element;

use Application\Form\Element\Recaptcha;
use Psr\Container\ContainerInterface;
use Laminas\ServiceManager\Factory\FactoryInterface;
class RecaptchaFactory
{
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
    {
        $config = $container->get('config');
        return new Recaptcha($config['circlical']['recaptcha']['client'] ?? 'configure_me');
    }
}


??

??