Skip to content

Commit 30b937a

Browse files
committed
Remove validation constraints, one needs the accessToken, the other needs the idToken...
1 parent 7c993d0 commit 30b937a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Builder/JWTVerifierBuilder.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ public function execute(): Configuration
4141
new IssuedBy(
4242
id: $this->configRepository->getAsString('oidc.provider.issuer'),
4343
),
44-
new SignedWith(
45-
signer: $signer,
46-
key: $key,
47-
),
48-
new StrictValidAt(
49-
clock: new FrozenClock(new \DateTimeImmutable()),
50-
),
44+
// new SignedWith(
45+
// signer: $signer,
46+
// key: $key,
47+
// ),
48+
// new StrictValidAt(
49+
// clock: new FrozenClock(new \DateTimeImmutable()),
50+
// ),
5151
);
5252

5353
return $configuration;

0 commit comments

Comments
 (0)