Skip to content

Commit cd16d48

Browse files
authored
Merge pull request #153 from dariuskt/issues_remove_params
removing bogus $params from Issues::remove. fixes #152
2 parents 4c934c6 + 4d65272 commit cd16d48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Gitlab/Api/Issues.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function update($project_id, $issue_id, array $params)
6060
*/
6161
public function remove($project_id, $issue_id)
6262
{
63-
return $this->delete($this->getProjectPath($project_id, 'issues/'.$this->encodePath($issue_id)), $params);
63+
return $this->delete($this->getProjectPath($project_id, 'issues/'.$this->encodePath($issue_id)));
6464
}
6565

6666
/**

0 commit comments

Comments
 (0)