Skip to content

Commit 3c201c9

Browse files
committed
Removed teams() method... woops
1 parent a66cd9c commit 3c201c9

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

lib/Gitlab/Model/Project.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -104,18 +104,6 @@ public function removeMember($user_id)
104104
return true;
105105
}
106106

107-
public function teams()
108-
{
109-
$data = $this->api('teams')->all($this->id);
110-
111-
$teams = array();
112-
foreach ($data as $team) {
113-
$teams[] = Team::fromArray($this->getClient(), $team);
114-
}
115-
116-
return $teams;
117-
}
118-
119107
public function addToTeam($team_id, $greatest_access_level)
120108
{
121109
$team = new Team($team_id, $this->getClient());

0 commit comments

Comments
 (0)