bztang-admin/vendor/mews/captcha/src/Facades/Captcha.php

20 lines
277 B
PHP

<?php
namespace Mews\Captcha\Facades;
use Illuminate\Support\Facades\Facade;
/**
* @see \Mews\Captcha\Captcha
*/
class Captcha extends Facade
{
/**
* @return string
*/
protected static function getFacadeAccessor()
{
return 'captcha';
}
}