/**
  * Send the request and return a result object.
  *
  * @return \PHPEveCentral\Results\MarketStat
  *
  * @throws \PHPEveCentral\Exceptions\MarketStatRequestException
  */
 public function send()
 {
     $content = Utils::sendCurlRequest($this->url, $this->buildParams(), true);
     return new \PHPEveCentral\Results\MarketStat($content);
 }
Exemple #2
0
 public function send()
 {
     $url = $this->url . '/' . $this->type . '/' . $this->locale . '/' . urlencode($this->name) . '/bid/' . $this->bid;
     $content = Utils::sendCurlRequest($url, array(), false);
     return new \PHPEveCentral\Results\History($content);
 }