for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MadWizard\WebAuthn\Metadata;
use MadWizard\WebAuthn\Attestation\TrustAnchor\MetadataInterface;
use MadWizard\WebAuthn\Server\Registration\RegistrationResultInterface;
final class NullMetadataResolver implements MetadataResolverInterface
{
public function getMetadata(RegistrationResultInterface $registrationResult): ?MetadataInterface
return null;
}