0a2855b8d182fd56e34778a58b902d2d9938be07
[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  * @internal
11  */
12 class SystemConfigFormTestForm extends ConfigFormBase {
13
14   /**
15    * {@inheritdoc}
16    */
17   public function getFormId() {
18     return 'form_test_system_config_test_form';
19   }
20
21   /**
22    * {@inheritdoc}
23    */
24   protected function getEditableConfigNames() {
25     return [];
26   }
27
28 }