diff --git b/core/modules/taxonomy/lib/Drupal/taxonomy/Form/VocabularyResetForm.php a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/VocabularyResetForm.php index 1dffa5f..e735800 100644 --- b/core/modules/taxonomy/lib/Drupal/taxonomy/Form/VocabularyResetForm.php +++ a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/VocabularyResetForm.php @@ -7,8 +7,8 @@ namespace Drupal\taxonomy\Form; -use Drupal\taxonomy\TermStorageControllerInterface; use Drupal\Core\Entity\EntityConfirmFormBase; +use Drupal\taxonomy\TermStorageControllerInterface; use Symfony\Component\DependencyInjection\ContainerInterface; /** diff --git b/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageControllerInterface.php a/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageControllerInterface.php index 7941c46..8002b22 100644 --- b/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageControllerInterface.php +++ a/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageControllerInterface.php @@ -35,7 +35,7 @@ public function updateTermHierarchy(EntityInterface $term); * Finds all parents of a given term ID. * * @param int $tid - * Term id to retrieve parents for. + * Term ID to retrieve parents for. * * @return array * An array of term objects which are the parents of the term $tid. @@ -46,7 +46,7 @@ public function loadParents($tid); * Finds all children of a term ID. * * @param int $tid - * Term id to retrieve parents for. + * Term ID to retrieve parents for. * @param string $vid * An optional vocabulary ID to restrict the child search. *