diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php b/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php index 0ca53a7..0320bba 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php @@ -13,7 +13,7 @@ use Drupal\Core\Config\ConfigFactory; use Drupal\Core\Database\Connection; use Drupal\Core\Extension\ModuleHandlerInterface; -use Drupal\taxonomy\Plugin\Core\Entity\Vocabulary; +use Drupal\taxonomy\VocabularyInteface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\DependencyInjection\ContainerInterface; @@ -90,9 +90,19 @@ public function getFormId() { } /** - * {@inheritdoc} + * Form constructor. + * + * @param array $form + * An associative array containing the structure of the form. + * @param array $form_state + * An associative array containing the current state of the form. + * @param \Drupal\taxonomy\VocabularyInterface $taxonomy_vocabulary + * The vocabulary to display the overview form for. + * + * @return array + * The form structure. */ - public function buildForm(array $form, array &$form_state, Vocabulary $taxonomy_vocabulary = NULL) { + public function buildForm(array $form, array &$form_state, VocabularyInterface $taxonomy_vocabulary = NULL) { global $pager_page_array, $pager_total, $pager_total_items; // Check for confirmation forms.