We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 451e8c4 commit 95db75bCopy full SHA for 95db75b
lib/Bitbucket/API/Repositories/Changesets/Comments.php
@@ -76,7 +76,7 @@ public function delete($account, $repo, $node, $commentID)
76
*
77
* @see https://confluence.atlassian.com/x/6A2mEQ
78
*/
79
- public function create($account, $repo, $node, $content, $options = array())
+ public function create($account, $repo, $node, $content, array $options = array())
80
{
81
return $this->requestPost(
82
sprintf('repositories/%s/%s/changesets/%s/comments', $account, $repo, $node),
@@ -106,7 +106,7 @@ public function create($account, $repo, $node, $content, $options = array())
106
107
108
109
- public function update($account, $repo, $node, $commentID, $content, $options = array())
+ public function update($account, $repo, $node, $commentID, $content, array $options = array())
110
111
return $this->requestPut(
112
sprintf('repositories/%s/%s/changesets/%s/comments/%d', $account, $repo, $node, $commentID),
0 commit comments