Files
swiftadmin/vendor/webman/captcha/src/PhraseBuilderInterface.php

22 lines
347 B
PHP
Raw Normal View History

2022-08-19 19:48:37 +08:00
<?php
2023-04-25 20:11:49 +08:00
namespace Webman\Captcha;
2022-08-19 19:48:37 +08:00
/**
* Interface for the PhraseBuilder
*
* @author Gregwar <g.passault@gmail.com>
*/
interface PhraseBuilderInterface
{
/**
* Generates random phrase of given length with given charset
*/
public function build();
/**
* "Niceize" a code
*/
public function niceize($str);
}