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 Comments extends Api |
||
21 | { |
||
22 | /** |
||
23 | * Get a list of a commit comments |
||
24 | * |
||
25 | * @access public |
||
26 | * @param string $account The team or individual account owning the repository. |
||
27 | * @param string $repo The repository identifier. |
||
28 | * @param string $revision A SHA1 value for the commit. |
||
29 | * @return ResponseInterface |
||
30 | */ |
||
31 | 1 | public function all($account, $repo, $revision) |
|
37 | |||
38 | /** |
||
39 | * Get an individual commit comment |
||
40 | * |
||
41 | * @access public |
||
42 | * @param string $account The team or individual account owning the repository. |
||
43 | * @param string $repo The repository identifier. |
||
44 | * @param string $revision A SHA1 value for the commit. |
||
45 | * @param int $commentID The comment identifier. |
||
46 | * @return ResponseInterface |
||
47 | */ |
||
48 | 1 | public function get($account, $repo, $revision, $commentID) |
|
54 | } |
||
55 |