| Total Complexity | 4 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class AttestationObject |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | private $rawAttestationObject; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var AttestationStatement |
||
| 27 | */ |
||
| 28 | private $attStmt; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var AuthenticatorData |
||
| 32 | */ |
||
| 33 | private $authData; |
||
| 34 | |||
| 35 | public function __construct(string $rawAttestationObject, AttestationStatement $attStmt, AuthenticatorData $authData) |
||
| 40 | } |
||
| 41 | |||
| 42 | public function getRawAttestationObject(): string |
||
| 45 | } |
||
| 46 | |||
| 47 | public function getAttStmt(): AttestationStatement |
||
| 50 | } |
||
| 51 | |||
| 52 | public function getAuthData(): AuthenticatorData |
||
| 57 |