service-captcha/app/ServiceResults/Api/V1/CaptchaService/CaptchaVerifiedResult.php
Leonid Nikitin 520a3ba068
Revived API POST /api/v1/captcha.
Captcha validation has been adjusted.
2023-11-26 15:09:42 +06:00

18 lines
341 B
PHP

<?php declare(strict_types=1);
namespace App\ServiceResults\Api\V1\CaptchaService;
use App\ServiceResults\ServiceResult;
final class CaptchaVerifiedResult extends ServiceResult
{
public function __construct(
private readonly string $key
) { }
public function getKey(): string
{
return $this->key;
}
}