for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace TMV\OpenIdClient\ClaimChecker;
final class AtHashChecker extends AbstractHashChecker
{
private const CLAIM_NAME = 'at_hash';
public function supportedClaim(): string
return self::CLAIM_NAME;
}