mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
21 lines
365 B
PHP
21 lines
365 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($length, $charset);
|
|
|
|
/**
|
|
* "Niceize" a code
|
|
*/
|
|
public function niceize($str);
|
|
}
|