You are here

protected function DeveloperAppCreateFormBase::appCredentialController in Apigee Edge 8

Returns the app specific app credential controller.

Parameters

string $owner: The developer id (UUID), email address or team (company) name.

string $app_name: The name of an app.

Return value

\Drupal\apigee_edge\Entity\Controller\AppCredentialControllerInterface The app credential controller.

Overrides AppForm::appCredentialController

File

src/Entity/Form/DeveloperAppCreateFormBase.php, line 72

Class

DeveloperAppCreateFormBase
Base entity form for developer app create forms.

Namespace

Drupal\apigee_edge\Entity\Form

Code

protected function appCredentialController(string $owner, string $app_name) : AppCredentialControllerInterface {
  return $this->appCredentialControllerFactory
    ->developerAppCredentialController($owner, $app_name);
}