rtckit/php-sip

View on GitHub
src/Header/ValueWithParams.php

Summary

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

namespace RTCKit\SIP\Header;

/**
 * Value with Params class
 */
class ValueWithParams
{
    /** @var string Header field value */
    public string $value;

    /** @var array<string,string> Parameters */
    public array $params = [];
}