Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/joomla5/libraries/vendor/web-auth/webauthn-lib/src/ |
| [Home] [System Details] [Kill Me] |
<?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;
}
}