Files
webauthn/src/Attestation/AttestationObject.php
2022-06-14 05:17:04 -04:00

27 lines
576 B
PHP

<?php
namespace Laragear\WebAuthn\Attestation;
use Laragear\WebAuthn\Attestation\Formats\Format;
/**
* @internal
*/
class AttestationObject
{
/**
* Create a new Attestation Object.
*
* @param \Laragear\WebAuthn\Attestation\AuthenticatorData $authenticatorData
* @param \Laragear\WebAuthn\Attestation\Formats\Format $format
* @param string $formatName
*/
public function __construct(
public AuthenticatorData $authenticatorData,
public Format $format,
public string $formatName)
{
//
}
}