diff --git a/src/RoleInterface.php b/src/RoleInterface.php index 542f2cbd..9ab7e945 100644 --- a/src/RoleInterface.php +++ b/src/RoleInterface.php @@ -36,7 +36,7 @@ public function addChild(RoleInterface $child) : void; * * @return RoleInterface[] */ - public function getChildren() : array; + public function getChildren() : iterable; /** * Add a parent. @@ -48,5 +48,5 @@ public function addParent(RoleInterface $parent) : void; * * @return RoleInterface[] */ - public function getParents() : array; + public function getParents() : iterable; }