You are here

public function TeamApp::setAppOwner in Apigee Edge 8

Sets the app owner's property value on an app.

Parameters

string $owner: The owner of the app. Developer id (uuid) or team (company) name.

Overrides AppInterface::setAppOwner

File

modules/apigee_edge_teams/src/Entity/TeamApp.php, line 131

Class

TeamApp
Defines the Team (company) app entity class.

Namespace

Drupal\apigee_edge_teams\Entity

Code

public function setAppOwner(string $owner) : void {
  $this->decorated
    ->setCompanyName($owner);
}