Exemplo n.º 1
0
 /**
  * @param string $type
  * @return Iq
  */
 protected function getIq($type = null)
 {
     $iq = new Iq($this->options);
     if (isset($type)) {
         $iq->setType($type);
     }
     return $iq;
 }