Skip to content

Commit 95db75b

Browse files
committed
updated typehints
1 parent 451e8c4 commit 95db75b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function delete($account, $repo, $node, $commentID)
7676
*
7777
* @see https://confluence.atlassian.com/x/6A2mEQ
7878
*/
79-
public function create($account, $repo, $node, $content, $options = array())
79+
public function create($account, $repo, $node, $content, array $options = array())
8080
{
8181
return $this->requestPost(
8282
sprintf('repositories/%s/%s/changesets/%s/comments', $account, $repo, $node),
@@ -106,7 +106,7 @@ public function create($account, $repo, $node, $content, $options = array())
106106
*
107107
* @see https://confluence.atlassian.com/x/6A2mEQ
108108
*/
109-
public function update($account, $repo, $node, $commentID, $content, $options = array())
109+
public function update($account, $repo, $node, $commentID, $content, array $options = array())
110110
{
111111
return $this->requestPut(
112112
sprintf('repositories/%s/%s/changesets/%s/comments/%d', $account, $repo, $node, $commentID),

0 commit comments

Comments
 (0)