We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 607221d commit d9cfc1bCopy full SHA for d9cfc1b
README.md
@@ -175,16 +175,16 @@ $teams = [
175
'permission' => 'owner',
176
],
177
];
178
-$teams = $client->customers()->addOrEditTeams($projectName, $teams);
+$teams = $client->projects()->addOrEditTeams($projectName, $teams);
179
```
180
Returns an array of added project teams.
181
182
183
-##### Remove a team from a customer
+##### Remove a team from a project
184
```php
185
$projectName = 'project';
186
$teamId = 12;
187
-$client->customers()->removeTeam($projectName, $teamId);
+$client->projects()->removeTeam($projectName, $teamId);
188
189
190
##### List a projects's packages
0 commit comments