protected function TeamAppCreateFormBase::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
- modules/
apigee_edge_teams/ src/ Entity/ Form/ TeamAppCreateFormBase.php, line 89
Class
- TeamAppCreateFormBase
- Base form for team app create forms.
Namespace
Drupal\apigee_edge_teams\Entity\FormCode
protected function appCredentialController(string $owner, string $app_name) : AppCredentialControllerInterface {
return $this->appCredentialControllerFactory
->teamAppCredentialController($owner, $app_name);
}