LiteRecaptchaService.php
24 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @copyright © TMS-Plugins. All rights reserved. |
| 4 | * @licence See LICENCE.md for license details. |
| 5 | */ |
| 6 | |
| 7 | namespace AmeliaBooking\Infrastructure\Services\Recaptcha; |
| 8 | |
| 9 | /** |
| 10 | * Class RecaptchaService |
| 11 | */ |
| 12 | class LiteRecaptchaService extends AbstractRecaptchaService |
| 13 | { |
| 14 | /** |
| 15 | * @param string $value |
| 16 | * |
| 17 | * @return boolean |
| 18 | */ |
| 19 | public function verify($value) |
| 20 | { |
| 21 | return true; |
| 22 | } |
| 23 | } |
| 24 |