protected function TeamAppEditForm::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/ TeamAppEditForm.php, line 91
Class
- TeamAppEditForm
- General form handler for the team app edit.
Namespace
Drupal\apigee_edge_teams\Entity\FormCode
protected function appCredentialController(string $owner, string $app_name) : AppCredentialControllerInterface {
return $this->appCredentialControllerFactory
->teamAppCredentialController($owner, $app_name);
}