We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 787a804 commit ef76575Copy full SHA for ef76575
src/Attestation/AttestationObject.php
@@ -157,7 +157,7 @@ public function getCertificateSubject(): string
157
* returns the key certificate in PEM format
158
* @return string
159
*/
160
- public function getCertificatePem(): string
+ public function getCertificatePem(): ?string
161
{
162
return $this->_attestationFormat->getCertificatePem();
163
}
src/WebAuthn.php
@@ -18,7 +18,7 @@ class WebAuthn
18
private string $_rpId;
19
private string $_rpIdHash;
20
private $_challenge;
21
- private ?int $_signatureCounter;
+ private ?int $_signatureCounter = null;
22
private $_caFiles;
23
private $_formats;
24
private $_androidKeyHashes;
0 commit comments