PhraseBuilderInterface.php 347 B

123456789101112131415161718192021
  1. <?php
  2. namespace Webman\Captcha;
  3. /**
  4. * Interface for the PhraseBuilder
  5. *
  6. * @author Gregwar <g.passault@gmail.com>
  7. */
  8. interface PhraseBuilderInterface
  9. {
  10. /**
  11. * Generates random phrase of given length with given charset
  12. */
  13. public function build();
  14. /**
  15. * "Niceize" a code
  16. */
  17. public function niceize($str);
  18. }