Skip to content

Commit

Permalink
Added checks() in Repo. (#809)
Browse files Browse the repository at this point in the history
* added checks() in Repo

* tidy

* removed space at end of line

* removed another space at end of line

* moved use-statement
  • Loading branch information
BroderFluff authored and acrobat committed Nov 1, 2019
1 parent 357f69c commit a21dbd7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/Github/Api/Repo.php
Expand Up @@ -311,6 +311,18 @@ public function commits()
return new Commits($this->client);
}

/**
* Manage checks on a repository.
*
* @link https://developer.github.com/v3/checks/
*
* @return Checks
*/
public function checks()
{
return new Checks($this->client);
}

/**
* Manage the content of a repository.
*
Expand Down

0 comments on commit a21dbd7

Please sign in to comment.