PAGI\DialDescriptor\SIPDialDescriptor::getChannelDescriptor PHP Method

getChannelDescriptor() public method

(non-PHPdoc)
See also: DialDescriptor::getChannelDescriptor()
    public function getChannelDescriptor()
    {
        $descriptor = self::TECHNOLOGY . '/' . $this->target;
        if (null !== $this->provider) {
            $descriptor .= '@' . $this->provider;
        }
        return $descriptor;
    }