Skip to content
This repository has been archived by the owner on Aug 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #408 from fazni/371-PreciseDataType
Browse files Browse the repository at this point in the history
We can update the generic @return array type hints to more precise da…
  • Loading branch information
pfrenssen authored Jul 5, 2018
2 parents 676b116 + 068aba2 commit 15182de
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/GroupTypeManagerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand All @@ -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.
*
Expand All @@ -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
Expand All @@ -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);
Expand All @@ -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.
*/
Expand Down Expand Up @@ -164,7 +164,7 @@ public function resetGroupRelationMap();
/**
* Returns the group map.
*
* @return array
* @return string[][]
* The group map.
*/
public function getGroupMap();
Expand Down

0 comments on commit 15182de

Please sign in to comment.