We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 490a9aa commit fa1729fCopy full SHA for fa1729f
src/OpenIDConnectClient.php
@@ -1269,20 +1269,6 @@ public function verifySignatures(JWS $jws)
1269
}
1270
1271
1272
- /**
1273
- * @param string $iss
1274
- * @return bool
1275
- * @throws OpenIDConnectClientException
1276
- */
1277
- protected function validateIssuer(string $iss): bool
1278
- {
1279
- if ($this->issuerValidator !== null) {
1280
- return $this->issuerValidator->__invoke($iss);
1281
- }
1282
-
1283
- return ($iss === $this->getIssuer() || $iss === $this->getWellKnownIssuer() || $iss === $this->getWellKnownIssuer(true));
1284
1285
1286
public function urlEncode(string $str): string
1287
{
1288
$enc = base64_encode($str);
0 commit comments