Skip to content

Commit d9cfc1b

Browse files
committed
Docs: fix typo in project teams
1 parent 607221d commit d9cfc1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -175,16 +175,16 @@ $teams = [
175175
'permission' => 'owner',
176176
],
177177
];
178-
$teams = $client->customers()->addOrEditTeams($projectName, $teams);
178+
$teams = $client->projects()->addOrEditTeams($projectName, $teams);
179179
```
180180
Returns an array of added project teams.
181181

182182

183-
##### Remove a team from a customer
183+
##### Remove a team from a project
184184
```php
185185
$projectName = 'project';
186186
$teamId = 12;
187-
$client->customers()->removeTeam($projectName, $teamId);
187+
$client->projects()->removeTeam($projectName, $teamId);
188188
```
189189

190190
##### List a projects's packages

0 commit comments

Comments
 (0)