You are here

final protected function AppCredentialsConfigForm::getConfigName in Apigee Edge 8

Returns the name of the config that contains the app credential settings.

Return value

string The name of the config.

1 call to AppCredentialsConfigForm::getConfigName()
AppCredentialsConfigForm::buildForm in src/Form/AppCredentialsConfigForm.php
Form constructor.

File

src/Form/AppCredentialsConfigForm.php, line 73

Class

AppCredentialsConfigForm
Base config form for app credentials related settings.

Namespace

Drupal\apigee_edge\Form

Code

protected final function getConfigName() : string {
  $configs = $this
    ->getEditableConfigNames();
  return reset($configs);
}