for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Shieldon package.
*
* (c) Terry L. <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
* php version 7.1.0
* @category Web-security
* @package Shieldon
* @author Terry Lin <[email protected]>
* @copyright 2019 terrylinooo
* @license https://github.com/terrylinooo/shieldon/blob/2.x/LICENSE MIT
* @link https://github.com/terrylinooo/shieldon
* @see https://shieldon.io
*/
declare(strict_types=1);
namespace Shieldon\Firewall\Captcha;
* ComponentPrivider
abstract class CaptchaProvider implements CaptchaInterface
{
* Constroctor.
public function __construct()
}
* Is denied?
* @return bool
abstract public function response(): bool;
* Unique deny status code.
* @return string
abstract public function form(): string;