First release
This commit is contained in:
26
src/Attestation/AttestationObject.php
Normal file
26
src/Attestation/AttestationObject.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?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)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user