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/Utils.php

<?php

declare(strict_types=1);

namespace Webauthn\MetadataService;

/**
 * @internal
 */
abstract class Utils
{
    /**
     * @param array<mixed> $data
     *
     * @return array<mixed>
     */
    public static function filterNullValues(array $data): array
    {
        return array_filter($data, static fn ($var): bool => $var !== null);
    }
}