mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2025-03-26 02:57:02 +00:00
22 lines
348 B
PHP
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);
|
|
}
|