Directory : /home/aplikasiposinfo/.trash/vendor.1/mews/captcha/src/ |
Current File : /home/aplikasiposinfo/.trash/vendor.1/mews/captcha/src/LumenCaptchaController.php |
<?php namespace Mews\Captcha; use Exception; use Laravel\Lumen\Routing\Controller; /** * Class CaptchaController * @package Mews\Captcha */ class LumenCaptchaController extends Controller { /** * get CAPTCHA * * @param Captcha $captcha * @param string $config * @return array|mixed * @throws Exception */ public function getCaptcha(Captcha $captcha, $config = 'default') { return $captcha->create($config); } }