| 1 | <?php |
||
| 10 | class Assignees extends AbstractIssues |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * List assignees |
||
| 15 | * |
||
| 16 | * @link https://developer.github.com/v3/issues/assignees/#list-assignees |
||
| 17 | * @return array |
||
| 18 | */ |
||
| 19 | public function listAssignees(): array |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Check assignee |
||
| 28 | * |
||
| 29 | * @link https://developer.github.com/v3/issues/assignees/#check-assignee |
||
| 30 | * |
||
| 31 | * @param string $assignee |
||
| 32 | * |
||
| 33 | * @return bool |
||
| 34 | */ |
||
| 35 | public function checkAssignee(string $assignee): bool |
||
| 46 | } |