Total Complexity | 6 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
4 | class CustomCaptcha extends Anticaptcha implements AntiCaptchaTaskProtocol { |
||
5 | |||
6 | private $imageUrl; |
||
7 | private $assignment; |
||
8 | private $forms; |
||
9 | |||
10 | public function getPostData() { |
||
16 | ); |
||
17 | } |
||
18 | |||
19 | public function getTaskSolution() { |
||
21 | } |
||
22 | |||
23 | public function setImageUrl($value) { |
||
24 | $this->imageUrl = $value; |
||
25 | } |
||
26 | |||
27 | public function setAssignment($value) { |
||
29 | } |
||
30 | |||
31 | public function setForms($value) { |
||
38 | } |
||
39 | } |
||
42 |