public function TeamApp::getAppOwner in Apigee Edge 8
Returns the id of the app owner from the app entity.
Return value could be either the developer id or the company name.
Return value
string Id of the app owner, or null if the app is new.
Overrides AppInterface::getAppOwner
File
- modules/
apigee_edge_teams/ src/ Entity/ TeamApp.php, line 124
Class
- TeamApp
- Defines the Team (company) app entity class.
Namespace
Drupal\apigee_edge_teams\EntityCode
public function getAppOwner() : ?string {
return $this->decorated
->getCompanyName();
}