| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class AuthenticatorAttestationResponse extends AuthenticatorResponse |
||
| 22 | { |
||
| 23 | private $attestationObject; |
||
| 24 | |||
| 25 | public function __construct(CollectedClientData $clientDataJSON, AttestationObject $attestationObject) |
||
| 26 | { |
||
| 27 | parent::__construct($clientDataJSON); |
||
| 28 | $this->attestationObject = $attestationObject; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getAttestationObject(): AttestationObject |
||
| 34 | } |
||
| 35 | } |
||
| 36 |