Your IP : 216.73.216.84


Current Path : /home/helpink/www/libraries/vendor/web-auth/metadata-service/src/
Upload File :
Current File : /home/helpink/www/libraries/vendor/web-auth/metadata-service/src/StatusReportRepository.php

<?php

declare(strict_types=1);

namespace Webauthn\MetadataService;

use Webauthn\MetadataService\Statement\StatusReport;

interface StatusReportRepository
{
    /**
     * @return StatusReport[]
     */
    public function findStatusReportsByAAGUID(string $aaguid): array;
}