kb / libs /Captcha /PhraseBuilderInterface.php
Xv Zan
ULFS
e4f4821
raw
history blame
348 Bytes
<?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);
}