diff --git a/core/modules/system/src/Plugin/views/field/BulkForm.php b/core/modules/system/src/Plugin/views/field/BulkForm.php index 90642f9..e678a02 100644 --- a/core/modules/system/src/Plugin/views/field/BulkForm.php +++ b/core/modules/system/src/Plugin/views/field/BulkForm.php @@ -7,7 +7,7 @@ namespace Drupal\system\Plugin\views\field; -use Drupal\Core\Form\FormErrorInterface; +use Drupal\Core\Form\FormBuilderInterface; use Drupal\Core\Entity\EntityStorageInterface; use Drupal\Core\Form\FormStateInterface; use Drupal\views\Plugin\views\display\DisplayPluginBase; @@ -41,7 +41,7 @@ class BulkForm extends FieldPluginBase { /** * The form builder. * - * @var \Drupal\Core\Form\FormErrorInterface + * @var \Drupal\Core\Form\FormBuilderInterface */ protected $formBuilder; @@ -56,10 +56,10 @@ class BulkForm extends FieldPluginBase { * The plugin implementation definition. * @param \Drupal\Core\Entity\EntityStorageInterface $storage * The action storage. - * @param \Drupal\Core\Form\FormErrorInterface $form_builder + * @param \Drupal\Core\Form\FormBuilderInterface $form_builder * The form builder. */ - public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityStorageInterface $storage, FormErrorInterface $form_builder) { + public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityStorageInterface $storage, FormBuilderInterface $form_builder) { parent::__construct($configuration, $plugin_id, $plugin_definition); $this->actionStorage = $storage;