vCaptcha/src/vCaptcha/Abstracts/CaptchaType.php

10 lines
171 B
PHP
Raw Permalink Normal View History

2022-01-14 03:07:01 +01:00
<?php
namespace vCaptcha\Abstracts;
abstract class CaptchaType
{
2022-02-05 21:45:46 +01:00
const None = 'NONE';
2022-01-14 03:07:01 +01:00
const ImageTextScramble = 'IMAGE_TEXT_SCRAMBLE';
}