PHPDaemon\Clients\XMPP\XMPPRoster::getContact PHP Method

getContact() public method

Retrieve contact via jid
public getContact ( string $jid ) : array | null
$jid string
return array | null
    public function getContact($jid)
    {
        if ($this->isContact($jid)) {
            return $this->roster_array[$jid]['contact'];
        }
        return null;
    }