You are here

public function BuildHooksGithubConfigForm::getFormId in Build Hooks 3.x

Returns a unique string identifying the form.

The returned ID should be a unique string that can be a valid PHP function name, since it's used in hook implementation names such as hook_form_FORM_ID_alter().

Return value

string The unique string identifying the form.

Overrides FormInterface::getFormId

File

modules/build_hooks_github/src/Form/BuildHooksGithubConfigForm.php, line 25

Class

BuildHooksGithubConfigForm
Defines a config form for Github deployments.

Namespace

Drupal\build_hooks_github\Form

Code

public function getFormId() {
  return 'build_hooks_github_config_form';
}