Skip to content

Commit 795585c

Browse files
committed
Removed unused parameters from Changesets::all()
1 parent a894797 commit 795585c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Bitbucket/API/Repositories/Changesets.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Changesets extends API\Api
3434
public function all($account, $repo, $start = null, $limit = 15)
3535
{
3636
return $this->requestGet(
37-
sprintf('repositories/%s/%s/changesets', $account, $repo, $start, $limit),
37+
sprintf('repositories/%s/%s/changesets', $account, $repo),
3838
array(
3939
'start' => $start,
4040
'limit' => $limit

0 commit comments

Comments
 (0)