We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 362450f commit 93aa6e2Copy full SHA for 93aa6e2
src/Api/Projects.php
@@ -1126,9 +1126,9 @@ public function deleteAllMergedBranches(int|string $project_id): mixed
1126
return $this->delete($this->getProjectPath($project_id, 'repository/merged_branches'));
1127
}
1128
1129
- public function projectAccessTokens(int|string $project_id): mixed
+ public function projectAccessTokens(int|string $project_id, array $parameters = []): mixed
1130
{
1131
- return $this->get($this->getProjectPath($project_id, 'access_tokens'));
+ return $this->get($this->getProjectPath($project_id, 'access_tokens'), $parameters);
1132
1133
1134
public function projectAccessToken(int|string $project_id, int|string $token_id): mixed
0 commit comments