Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbistroemcasa.meumercado.app
/
vendor
/
gregwar
/
captcha
/
src
/
Gregwar
/
Captcha
/
Editing: PhraseBuilderInterface.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(); /** * "Niceize" a code */ public function niceize($str); }
Save
Cancel