PAGI\DialDescriptor\DAHDIDialDescriptor::getChannelDescriptor PHP Method

getChannelDescriptor() public method

(non-PHPdoc)
See also: DialDescriptor::getChannelDescriptor()
    public function getChannelDescriptor()
    {
        $descriptor = self::TECHNOLOGY . '/';
        if ($this->isGroup) {
            $descriptor .= $this->descendantOrder ? 'G' : 'g';
        }
        $descriptor .= $this->identifier . '/' . $this->target;
        return $descriptor;
    }