f393beac0000aafd182cb4b8381a109f9bb4a82a
[yaffs-website] / web / core / modules / system / tests / modules / form_test / src / SystemConfigFormTestForm.php
1 <?php
2
3 namespace Drupal\form_test;
4
5 use Drupal\Core\Form\ConfigFormBase;
6
7 /**
8  * Tests the ConfigFormBase class.
9  */
10 class SystemConfigFormTestForm extends ConfigFormBase {
11
12   /**
13    * {@inheritdoc}
14    */
15   public function getFormId() {
16     return 'form_test_system_config_test_form';
17   }
18
19   /**
20    * {@inheritdoc}
21    */
22   protected function getEditableConfigNames() {
23     return [];
24   }
25
26 }