We have detected an error in your notification set-up
(Event-ID dab39dc24f564ec7bd4628d1305fd03c).
Currently, we cannot inform you about inspection progress.
Please check that the user
557058:bca11929-8c2d-43f2-8a82-c5416880d395
still has access to your repository or
update the API account.
1 | <?php |
||
20 | class Milestones extends API\Api |
||
21 | { |
||
22 | /** |
||
23 | * Get a list of milestones |
||
24 | * |
||
25 | * @access public |
||
26 | * @param string $account The team or individual account owning the repository. |
||
27 | * @param string $repo The repository identifier. |
||
28 | * @return MessageInterface |
||
29 | */ |
||
30 | public function all($account, $repo) |
||
36 | |||
37 | /** |
||
38 | * Get an individual milestone |
||
39 | * |
||
40 | * @access public |
||
41 | * @param string $account The team or individual account owning the repository. |
||
42 | * @param string $repo The repository identifier. |
||
43 | * @param int $milestoneID The milestone identifier. |
||
44 | * @return MessageInterface |
||
45 | */ |
||
46 | public function get($account, $repo, $milestoneID) |
||
52 | } |
||
53 |