Skip to content

Commit a21dbd7

Browse files
BroderFluffacrobat
authored andcommitted
Added checks() in Repo. (#809)
* added checks() in Repo * tidy * removed space at end of line * removed another space at end of line * moved use-statement
1 parent 357f69c commit a21dbd7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

lib/Github/Api/Repo.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,18 @@ public function commits()
311311
return new Commits($this->client);
312312
}
313313

314+
/**
315+
* Manage checks on a repository.
316+
*
317+
* @link https://developer.github.com/v3/checks/
318+
*
319+
* @return Checks
320+
*/
321+
public function checks()
322+
{
323+
return new Checks($this->client);
324+
}
325+
314326
/**
315327
* Manage the content of a repository.
316328
*

0 commit comments

Comments
 (0)