rtckit/php-sip

View on GitHub
src/Auth/Digest/ChallengeParams.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php
/**
 * RTCKit\SIP\Auth\Digest\ChallengeParams Class
 */
declare(strict_types = 1);

namespace RTCKit\SIP\Auth\Digest;

/**
 * Digest challenge parameters class
 */
class ChallengeParams extends AbstractParams
{
    /** @var string SIP domain */
    public string $domain;

    /** @var bool Stale response flag */
    public bool $stale;

    /** @var array<string> Quality of protection options */
    public array $qop = [];
}