for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MadWizard\WebAuthn\Dom;
final class TokenBindingStatus
{
/**
* Token binding was used when communicating with the Relying Party.
*/
public const PRESENT = 'present';
* The client supports token binding, but it was not negotiated when communicating with the Relying Party.
public const SUPPORTED = 'supported';
* @codeCoverageIgnore
private function __construct()
}
public static function isValidValue(string $value): bool
return $value === self::PRESENT || $value === self::SUPPORTED;