1 | <?php |
||
18 | trait VerifyCodeGeneratorTrait |
||
19 | { |
||
20 | /** |
||
21 | * @var int the minimum length for randomly generated word. Defaults to 6. |
||
22 | */ |
||
23 | public $minLength = 6; |
||
24 | /** |
||
25 | * @var int the maximum length for randomly generated word. Defaults to 7. |
||
26 | */ |
||
27 | public $maxLength = 7; |
||
28 | |||
29 | |||
30 | /** |
||
31 | * Generates new CAPTCHA code. |
||
32 | * @return string CAPTCHA code. |
||
33 | */ |
||
34 | 3 | public function generateVerifyCode() |
|
60 | } |