diff options
author | Thomas Lallement <thomas.lallement@9online.fr> | 2012-11-01 16:08:59 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-11-19 13:58:52 +0100 |
commit | 0030e8b836634073a97465fca0743159e4937343 (patch) | |
tree | 7b693529cc29eb209bac85c3ea5b373af0732a18 /Core/Role/RoleHierarchyInterface.php | |
parent | 706855841105f0befced9a7ae8b47b9d48a86f4e (diff) | |
download | symfony-security-0030e8b836634073a97465fca0743159e4937343.zip symfony-security-0030e8b836634073a97465fca0743159e4937343.tar.gz symfony-security-0030e8b836634073a97465fca0743159e4937343.tar.bz2 |
CS Fixes - Replaced "array of type" by "Type[]" in PHPDoc block
Diffstat (limited to 'Core/Role/RoleHierarchyInterface.php')
-rw-r--r-- | Core/Role/RoleHierarchyInterface.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/Role/RoleHierarchyInterface.php b/Core/Role/RoleHierarchyInterface.php index c495a7f..2ea6ca3 100644 --- a/Core/Role/RoleHierarchyInterface.php +++ b/Core/Role/RoleHierarchyInterface.php @@ -24,9 +24,9 @@ interface RoleHierarchyInterface * Reachable roles are the roles directly assigned but also all roles that * are transitively reachable from them in the role hierarchy. * - * @param array $roles An array of directly assigned roles + * @param RoleInterface[] $roles An array of directly assigned roles * - * @return array An array of all reachable roles + * @return RoleInterface[] An array of all reachable roles */ public function getReachableRoles(array $roles); } |