Skip to content

Commit 4378b95

Browse files
committed
docblock & cs fix in PullRequests::Comments
1 parent b0964e8 commit 4378b95

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

lib/Bitbucket/API/Repositories/PullRequests/Comments.php

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ public function get($account, $repo, $requestID, $commentID)
5858
* Add a new comment
5959
*
6060
* @access public
61-
* @param string $account The team or individual account owning the repository.
62-
* @param string $repo The repository identifier.
63-
* @param int $requestID An integer representing an id for the request.
64-
* @param string $content The comment.
65-
* @return mixed
61+
* @param string $account The team or individual account owning the repository.
62+
* @param string $repo The repository identifier.
63+
* @param int $requestID An integer representing an id for the request.
64+
* @param string $content The comment.
65+
* @return MessageInterface
6666
*/
6767
public function create($account, $repo, $requestID, $content)
6868
{
@@ -76,12 +76,12 @@ public function create($account, $repo, $requestID, $content)
7676
* Update an existing comment
7777
*
7878
* @access public
79-
* @param string $account The team or individual account owning the repository.
80-
* @param string $repo The repository identifier.
81-
* @param int $requestID An integer representing an id for the request.
82-
* @param string $content The comment.
83-
* @param int $commentID The comment identifier.
84-
* @return mixed
79+
* @param string $account The team or individual account owning the repository.
80+
* @param string $repo The repository identifier.
81+
* @param int $requestID An integer representing an id for the request.
82+
* @param string $content The comment.
83+
* @param int $commentID The comment identifier.
84+
* @return MessageInterface
8585
*/
8686
public function update($account, $repo, $requestID, $commentID, $content)
8787
{
@@ -95,11 +95,11 @@ public function update($account, $repo, $requestID, $commentID, $content)
9595
* Delete a pull request comment
9696
*
9797
* @access public
98-
* @param string $account The team or individual account owning the repository.
99-
* @param string $repo The repository identifier.
100-
* @param int $requestID An integer representing an id for the request.
101-
* @param int $commentID The comment identifier.
102-
* @return mixed
98+
* @param string $account The team or individual account owning the repository.
99+
* @param string $repo The repository identifier.
100+
* @param int $requestID An integer representing an id for the request.
101+
* @param int $commentID The comment identifier.
102+
* @return MessageInterface
103103
*/
104104
public function delete($account, $repo, $requestID, $commentID)
105105
{

0 commit comments

Comments
 (0)