| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class AttestationObject |
||
| 19 | { |
||
| 20 | private $rawAttestationObject; |
||
| 21 | private $attStmt; |
||
| 22 | private $authData; |
||
| 23 | |||
| 24 | public function __construct(string $rawAttestationObject, AttestationStatement $attStmt, AuthenticatorData $authData) |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getRawAttestationObject(): string |
||
| 34 | } |
||
| 35 | |||
| 36 | public function getAttStmt(): AttestationStatement |
||
| 39 | } |
||
| 40 | |||
| 41 | public function getAuthData(): AuthenticatorData |
||
| 46 |