File "CaptchaBuilderInterface.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/gregwar/captcha/src/Gregwar/Captcha/CaptchaBuilderInterface.php
File size: 290 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Gregwar\Captcha;
if (!defined('ABSPATH')) exit;
interface CaptchaBuilderInterface
{
 public function build($width, $height, $font, $fingerprint);
 public function save($filename, $quality);
 public function get($quality);
 public function output($quality);
}