1 <?php
2
3 namespace DevStrefa\ReCaptcha\Senders;
4
5 /**
6 * This interface must be implemented by every Sender Class in library
7 *
8 * @author Cichy <d3ut3r@gmail.com>
9 * @license https://opensource.org/licenses/MIT MIT
10 * @version 1.0.0
11 */
12 interface SenderInterface
13 {
14 /**
15 * Every Sender must implement this method it always should return Response object
16 *
17 * @param string $secretKey
18 * @param string $userResponse
19 * @param string $userIP
20 */
21 public function send($secretKey,$userResponse,$userIP);
22 }
23