public function TeamMemberRole::getDeveloper in Apigee Edge 8
Returns the developer's user entity.
Return value
\Drupal\user\UserInterface|null The developer's user entity or null if the entity is new and it has not been set yet.
Overrides TeamMemberRoleInterface::getDeveloper
1 call to TeamMemberRole::getDeveloper()
- TeamMemberRole::getCacheTags in modules/
apigee_edge_teams/ src/ Entity/ TeamMemberRole.php - The cache tags associated with this object.
File
- modules/
apigee_edge_teams/ src/ Entity/ TeamMemberRole.php, line 113
Class
- TeamMemberRole
- Defines the team member role entity.
Namespace
Drupal\apigee_edge_teams\EntityCode
public function getDeveloper() : ?UserInterface {
return $this
->getOwner();
}