final move of files
[web.mtrack] / MTrack / Interface / Captcha.php
1 <?php 
2
3
4 interface MTrack_Implementation_Captcha 
5 {
6   /** return the captcha content */
7   function emit($form);
8   /** check that the captcha is good
9    * Returns true/false */
10   function check($form);
11 }