Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | interface DeathByCaptchaInterface |
||
10 | { |
||
11 | /** |
||
12 | * Recupera informações sobre a conta |
||
13 | * @return AccountInterface |
||
14 | */ |
||
15 | public function account(): AccountInterface; |
||
16 | |||
17 | /** |
||
18 | * Recupera status do serviço |
||
19 | * @return StatusInterface [description] |
||
20 | */ |
||
21 | public function status(): StatusInterface; |
||
22 | |||
23 | /** |
||
24 | * Envia o captcha pro serviço ou recupera o resultado |
||
25 | * de um captcha previamente enviado |
||
26 | * @param $mix $captcha ID do captcha ou imagem |
||
27 | * @return ResolveInterface |
||
28 | */ |
||
29 | public function resolve($mix): ResolveInterface; |
||
30 | |||
31 | /** |
||
32 | * Envia o captcha pro serviço ou recupera o resultado |
||
33 | * de um captcha previamente enviado |
||
34 | * @param $mix $captcha ID do captcha or site-key |
||
35 | * @param $url $url url |
||
36 | * @return ResolveInterface |
||
37 | */ |
||
38 | public function resolveV2(string $mix, string $url = null): ResolveInterface; |
||
39 | |||
40 | /** |
||
41 | * Informa ao serviço que o captcha recuperado |
||
42 | * é inválido. |
||
43 | * @param int $id |
||
44 | * @return ReportInterface |
||
45 | */ |
||
46 | public function report(int $id): ReportInterface; |
||
47 | } |
||
48 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.