diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageControllerInterface.php b/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageControllerInterface.php index 1565247..7941c46 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageControllerInterface.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageControllerInterface.php @@ -18,7 +18,7 @@ /** * Removed reference to terms from term_hierarchy. * - * @param array + * @param array $tids * Array of terms that need to be removed from hierarchy. */ public function deleteTermHierarchy($tids); @@ -34,7 +34,7 @@ public function updateTermHierarchy(EntityInterface $term); /** * Finds all parents of a given term ID. * - * @param Integer $tid + * @param int $tid * Term id to retrieve parents for. * * @return array @@ -45,9 +45,9 @@ public function loadParents($tid); /** * Finds all children of a term ID. * - * @param Integer $tid + * @param int $tid * Term id to retrieve parents for. - * @param Integer $vid + * @param string $vid * An optional vocabulary ID to restrict the child search. * * @return array @@ -58,7 +58,7 @@ public function loadChildren($tid, $vid = NULL); /** * Finds all terms in a given vocabulary ID. * - * @param Integer $vid + * @param string $vid * Vocabulary ID to retrieve terms for. * * @return array @@ -69,10 +69,10 @@ public function loadTree($vid); /** * Count the number of nodes in a given vocabulary ID. * - * @param Integer $vid + * @param string $vid * Vocabulary ID to retrieve terms for. * - * @return integer + * @return int * A count of the nodes in a given vocabulary ID. */ public function nodeCount($vid); @@ -80,7 +80,7 @@ public function nodeCount($vid); /** * Reset the weights for a given vocabulary ID. * - * @param Integer $vid + * @param string $vid * Vocabulary ID to retrieve terms for. */ public function resetWeights($vid);