Просмотр файла vendor/gregwar/captcha/src/Gregwar/Captcha/PhraseBuilderInterface.php
<?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); }