| 1 | <?php |
| 2 | namespace MailPoetVendor\Gregwar\Captcha; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | interface CaptchaBuilderInterface |
| 5 | { |
| 6 | public function build($width, $height, $font, $fingerprint); |
| 7 | public function save($filename, $quality); |
| 8 | public function get($quality); |
| 9 | public function output($quality); |
| 10 | } |
| 11 |