Example #1
0
 /**
  * Returns content, raw format.
  *
  * @return string
  */
 public function getContent()
 {
     if (null === $this->content) {
         $this->content = $this->client->requestRaw('GET', $this->href);
     }
     return $this->content;
 }