* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis * @license https://opensource.org/licenses/GPL-3.0 - GPLv3 * @link https://easyappointments.org * @since v1.0.0 * ---------------------------------------------------------------------------- */ use Gregwar\Captcha\CaptchaBuilder; /** * Captcha controller. * * Handles the captcha operations. * * @package Controllers */ class Captcha extends EA_Controller { /** * Make a request to this method to get a captcha image. */ public function index() { $builder = new CaptchaBuilder; $builder->build(); session(['captcha_phrase' => $builder->getPhrase()]); header('Content-type: image/jpeg'); $builder->output(); } }