You are here

protected function FormTestArgumentsObject::getEditableConfigNames in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/form_test/src/FormTestArgumentsObject.php \Drupal\form_test\FormTestArgumentsObject::getEditableConfigNames()

Gets the configuration names that will be editable.

Return value

array An array of configuration object names that are editable if called in conjunction with the trait's config() method.

Overrides ConfigFormBaseTrait::getEditableConfigNames

File

core/modules/system/tests/modules/form_test/src/FormTestArgumentsObject.php, line 25

Class

FormTestArgumentsObject
Provides a test form object that needs arguments.

Namespace

Drupal\form_test

Code

protected function getEditableConfigNames() {
  return [
    'form_test.object',
  ];
}