You are here

public function TeamMembershipManagerInterface::getTeams in Apigee Edge 8

Returns the list of teams where the developer is currently a member.

Parameters

string $developer: Developer email address.

Return value

string[] Array of team names.

Throws

\Drupal\apigee_edge\Exception\DeveloperDoesNotExistException If developer not found with id.

2 methods override TeamMembershipManagerInterface::getTeams()
TeamMembershipManager::getTeams in modules/apigee_edge_teams/src/TeamMembershipManager.php
Returns the list of teams where the developer is currently a member.
TeamMembershipManager::getTeams in modules/apigee_edge_actions/src/TeamMembershipManager.php
Returns the list of teams where the developer is currently a member.

File

modules/apigee_edge_teams/src/TeamMembershipManagerInterface.php, line 75

Class

TeamMembershipManagerInterface
Base definition of the team membership manager service.

Namespace

Drupal\apigee_edge_teams

Code

public function getTeams(string $developer) : array;