Mark V
1: <?php
2: namespace MOC\V\Component\Captcha\Component;
3:
4: /**
5: * Interface IBridgeInterface
6: *
7: * @package MOC\V\Component\Captcha\Component
8: */
9: interface IBridgeInterface
10: {
11:
12: /**
13: * @param string $InputValue
14: *
15: * @return bool
16: */
17: public function verifyCaptcha($InputValue);
18:
19:
20: /**
21: * @return IBridgeInterface
22: * @throws \Exception
23: */
24: public function createCaptcha();
25:
26: /**
27: * @return mixed
28: */
29: public function getCaptcha();
30: }
31: