Я много имею дело с Drupal и классами и иногда читаю что-то вроде:
/**
* {@inheritdoc}
*/
// return the form definition
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this->config('hello_world.custom_salutation');
$form['salutation'] = array(
'#type' => 'textfield',
'#title' => $this->t('Salutation'),
'#description' => $this->t('Si prega di inserire il saluto che si desidera usare'),
'#default_value' => $config->get('salutation'),
);
что означает унаследовать?