| 1 | <?php |
||
| 8 | class UserValidationResponse extends WebhookResponse |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * UserValidationResponse constructor. |
||
| 12 | * @param string $userId |
||
| 13 | * @param string|null $userEmail |
||
| 14 | * @param string|null $userPhone |
||
| 15 | * @param string|null $userCountry |
||
| 16 | */ |
||
| 17 | 5 | public function __construct($userId, $userEmail = null, $userPhone = null, $userCountry = null) |
|
| 25 | |||
| 26 | 2 | private function buildResponse($userId, $userEmail, $userPhone, $userCountry) |
|
| 41 | } |
||
| 42 |