WP File Manager
Current Path:
/
home
/
itutorethiopia
/
public_html
/
vendor
/
mews
/
captcha
/
src
/
Name
Action
..
Captcha.php
Edit
CaptchaController.php
Edit
CaptchaServiceProvider.php
Edit
Facades
LumenCaptchaController.php
Edit
helpers.php
Edit
Editing: LumenCaptchaController.php
<?php namespace Mews\Captcha; use Laravel\Lumen\Routing\Controller; /** * Class CaptchaController * @package Mews\Captcha */ class LumenCaptchaController extends Controller { /** * get CAPTCHA * * @param \Mews\Captcha\Captcha $captcha * @param string $config * @return \Intervention\Image\ImageManager->response */ public function getCaptcha(Captcha $captcha, $config = 'default') { return $captcha->create($config); } }