Skip to content

Commit

Permalink
feature #1068 added phpdocs (staabm)
Browse files Browse the repository at this point in the history
This PR was merged into the 3.4.x-dev branch.

Discussion
----------



Commits
-------

40ba3e7 added phpdocs
  • Loading branch information
acrobat authored Jun 5, 2022
2 parents 1f31aa1 + 40ba3e7 commit 3a69934
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 3a69934

Please sign in to comment.