Просмотр файла vendor/gregwar/captcha/src/Gregwar/Captcha/PhraseBuilderInterface.php

Размер файла: 348B
<?php

namespace Gregwar\Captcha;

/**
 * Interface for the PhraseBuilder
 *
 * @author Gregwar <[email protected]>
 */
interface PhraseBuilderInterface
{
    /**
     * Generates  random phrase of given length with given charset
     */
    public function build();

    /**
     * "Niceize" a code
     */
    public function niceize($str);
}