Example #1
0
 /**
  * @return Buzz\Message\Response
  */
 public function sendQuery(Query $query, $url = self::URL)
 {
     $headers = array();
     $headers[] = 'User-Agent: SBBMobile/4.8 CFNetwork/609.1.4 Darwin/13.0.0';
     $headers[] = 'Accept: application/xml';
     $headers[] = 'Content-Type: application/xml';
     return $this->browser->post($url, $headers, $query->toXml());
 }