コード例 #1
0
ファイル: Stanza.php プロジェクト: vincebe/xmpp
 /**
  * @ignore
  */
 public function _get_receiver()
 {
     if (!isset($this->_xmpp)) {
         return null;
     }
     return $this->_xmpp->getUserByJid($this->to);
 }
コード例 #2
0
ファイル: User.php プロジェクト: vincebe/xmpp
 /**
  * Sends message to user.
  * @param string $content Message content.
  */
 public function message($content)
 {
     $this->_client->message($this->jid, $content);
 }