Skip to content

Commit e411527

Browse files
authored
Missing php8 tests (#166)
* PHP 8 tests * Incompatible dep removed * Typo
1 parent fd7d1af commit e411527

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Contributing
22

3-
This repository is a sub repository of [the JWT Framework](https://github.com/web-token/jwt-framework) project and is READ ONLY.
3+
This repository is a sub repository of [the JWT Framework](https://github.com/web-auth/webauthn-framework) project and is READ ONLY.
44
Please do not submit any Pull Requests here. It will be automatically closed.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Please do not submit any Pull Requests here. It will be automatically closed.
22

3-
You should submit it here: https://github.com/web-token/webauthn-framework/pulls
3+
You should submit it here: https://github.com/web-auth/webauthn-framework/pulls

src/AuthenticatorAttestationResponseValidator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ private function checkMetadataStatement(PublicKeyCredentialCreationOptions $publ
261261
$this->logger->debug('No attestation is asked.');
262262
//No attestation is asked. We shall ensure that the data is anonymous.
263263
if (
264-
'00000000-0000-0000-0000-000000000000' === $aaguid &&
265-
(AttestationStatement::TYPE_NONE === $attestationStatement->getType() || AttestationStatement::TYPE_SELF === $attestationStatement->getType())) {
264+
'00000000-0000-0000-0000-000000000000' === $aaguid
265+
&& (AttestationStatement::TYPE_NONE === $attestationStatement->getType() || AttestationStatement::TYPE_SELF === $attestationStatement->getType())) {
266266
$this->logger->debug('The Attestation Statement is anonymous.');
267267
$this->checkCertificateChain($attestationStatement, null);
268268

0 commit comments

Comments
 (0)