EmptyBlockForm.php in Drupal 10
File
core/modules/block/tests/modules/block_test/src/PluginForm/EmptyBlockForm.php
View source
<?php
namespace Drupal\block_test\PluginForm;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\PluginFormBase;
class EmptyBlockForm extends PluginFormBase {
public $plugin;
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
return $form;
}
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
}
}