diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-10-24 10:56:56 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-10-24 10:56:56 -0700 |
commit | abb080f2323f93aeb6c5a7d90e3fe4236e4c5b7f (patch) | |
tree | 175609529ca16d924127aa3c4eb12a15abb3f475 /modules/gallery/libraries/drivers | |
parent | 73a01d475bec334b3af76d46b36f68c00e78138a (diff) |
phpDoc fixes.
Diffstat (limited to 'modules/gallery/libraries/drivers')
-rw-r--r-- | modules/gallery/libraries/drivers/IdentityProvider.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/gallery/libraries/drivers/IdentityProvider.php b/modules/gallery/libraries/drivers/IdentityProvider.php index 5bb41dcc..c951293d 100644 --- a/modules/gallery/libraries/drivers/IdentityProvider.php +++ b/modules/gallery/libraries/drivers/IdentityProvider.php @@ -46,22 +46,22 @@ interface IdentityProvider_Driver { /** * Look up a user by id. - * @param integer id + * @param integer $id * @return User_Definition the user object, or null if the name was invalid. */ public function lookup_user($id); /** * Look up a user by name. - * @param string name - * @return User_Definition the user object, or null if the name was invalid. + * @param string $name + * @return User_Definition the user object, or null if the name was invalid. */ public function lookup_user_by_name($name); /** * Create a new group. * - * @param string $name + * @param string $name * @return Group_Definition the group object */ public function create_group($name); @@ -82,21 +82,21 @@ interface IdentityProvider_Driver { /** * List the users - * @param array array of ids to return the user objects for - * @return array the user list. + * @param array $ids array of ids to return the user objects for + * @return array the user list. */ public function get_user_list($ids); /** * Look up a group by id. - * @param integer id + * @param integer $id id * @return Group_Definition the user object, or null if the name was invalid. */ public function lookup_group($id); /** * Look up the group by name. - * @param string $name the name of the group to locate + * @param string $name the name of the group to locate * @return Group_Definition */ public function lookup_group_by_name($name); |