| 123456789101112131415161718192021 |
- <?php
- namespace Webman\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);
- }
|