| 1 | <?php |
||
| 5 | class BotScoutResponse |
||
| 6 | { |
||
| 7 | protected $matched; |
||
| 8 | |||
| 9 | protected $type; |
||
| 10 | |||
| 11 | protected $all; |
||
| 12 | |||
| 13 | protected $evaluation; |
||
| 14 | |||
| 15 | protected $mail; |
||
| 16 | |||
| 17 | protected $ip; |
||
| 18 | |||
| 19 | protected $name; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * BotScoutResponse constructor. |
||
| 23 | */ |
||
| 24 | public function __construct($response) |
||
| 45 | |||
| 46 | public function getMatched() : bool |
||
| 50 | |||
| 51 | public function getType() |
||
| 55 | |||
| 56 | public function getAll() |
||
| 60 | |||
| 61 | public function getMail() |
||
| 65 | |||
| 66 | public function getIp() |
||
| 70 | |||
| 71 | public function getName() |
||
| 75 | |||
| 76 | public function getEvaluation() |
||
| 80 | |||
| 81 | public function isValid() : bool |
||
| 85 | } |
||
| 86 |