Skip to content

Commit

Permalink
added phpdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm authored Jun 2, 2022
1 parent 1f31aa1 commit 40ba3e7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/Github/Api/PullRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,16 +108,25 @@ public function status($username, $repository, $id)
return $this->get($link);
}

/**
* @return Comments
*/
public function comments()
{
return new Comments($this->getClient());
}

/**
* @return Review
*/
public function reviews()
{
return new Review($this->getClient());
}

/**
* @return ReviewRequest
*/
public function reviewRequests()
{
return new ReviewRequest($this->getClient());
Expand Down

0 comments on commit 40ba3e7

Please sign in to comment.