* @copyright 2020 Copyright XEHub Corp. * @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL * @link https://xpressengine.io */ namespace App\Facades; use Illuminate\Support\Facades\Facade; /** * Class XeCaptcha * * @category Captcha * @package Xpressengine\Captcha * @see Xpressengine\Captcha\CaptchaManager * @author XE Developers * @copyright 2020 Copyright XEHub Corp. * @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL * @link https://xpressengine.io */ class XeCaptcha extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'xe.captcha'; } }