Your IP : 216.73.216.84


Current Path : /home/helpink/www/libraries/vendor/web-auth/webauthn-lib/src/
Upload File :
Current File : /home/helpink/www/libraries/vendor/web-auth/webauthn-lib/src/AuthenticatorResponse.php

<?php

declare(strict_types=1);

namespace Webauthn;

/**
 * @see https://www.w3.org/TR/webauthn/#authenticatorresponse
 */
abstract class AuthenticatorResponse
{
    public function __construct(
        private readonly CollectedClientData $clientDataJSON
    ) {
    }

    public function getClientDataJSON(): CollectedClientData
    {
        return $this->clientDataJSON;
    }
}