S2OJ/web/vendor/gregwar/captcha/src/Gregwar/Captcha/PhraseBuilderInterface.php
2022-03-14 13:49:48 +00:00

22 lines
348 B
PHP

<?php
namespace Gregwar\Captcha;
/**
* 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);
}