*/ class GitData extends AbstractApi { /** * @return Blobs */ public function blobs() { return new Blobs($this->client); } /** * @return Commits */ public function commits() { return new Commits($this->client); } /** * @return References */ public function references() { return new References($this->client); } /** * @return Tags */ public function tags() { return new Tags($this->client); } /** * @return Trees */ public function trees() { return new Trees($this->client); } }