diff --git a/src/GroupTypeManagerInterface.php b/src/GroupTypeManagerInterface.php index e67bcbf40..452e26e6a 100644 --- a/src/GroupTypeManagerInterface.php +++ b/src/GroupTypeManagerInterface.php @@ -50,7 +50,7 @@ public function getGroupBundleIdsByEntityType($entity_type_id); /** * Get all group bundles keyed by entity type. * - * @return array + * @return string[][] * An associative array, keyed by entity type, each value an indexed array * of bundle IDs. */ @@ -63,7 +63,7 @@ public function getAllGroupBundles($entity_type = NULL); * information about the relations between groups and group content bundles * then use getGroupRelationMap() instead. * - * @return array + * @return string[][] * An associative array of group content bundle IDs, keyed by entity type * ID. * @@ -81,7 +81,7 @@ public function getAllGroupContentBundleIds(); * @param string $entity_type_id * Entity type ID to filter the bundles by. * - * @return array + * @return string[] * An array of group content bundle IDs. * * @throws \InvalidArgumentException @@ -102,7 +102,7 @@ public function getAllGroupContentBundlesByEntityType($entity_type_id); * The bundle ID of the group content type for which to return associated * group bundle IDs. * - * @return array + * @return string[][] * An array of group bundle IDs, keyed by group entity type ID. */ public function getGroupBundleIdsByGroupContentBundle($group_content_entity_type_id, $group_content_bundle_id); @@ -117,7 +117,7 @@ public function getGroupBundleIdsByGroupContentBundle($group_content_entity_type * The bundle ID of the group type for which to return associated group * content bundle IDs. * - * @return array + * @return string[][] * An array of group content bundle IDs, keyed by group content entity type * ID. */ @@ -164,7 +164,7 @@ public function resetGroupRelationMap(); /** * Returns the group map. * - * @return array + * @return string[][] * The group map. */ public function getGroupMap();