summaryrefslogtreecommitdiff
path: root/modules/gallery/libraries
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-10-24 10:56:56 -0700
committerBharat Mediratta <bharat@menalto.com>2009-10-24 10:56:56 -0700
commitabb080f2323f93aeb6c5a7d90e3fe4236e4c5b7f (patch)
tree175609529ca16d924127aa3c4eb12a15abb3f475 /modules/gallery/libraries
parent73a01d475bec334b3af76d46b36f68c00e78138a (diff)
phpDoc fixes.
Diffstat (limited to 'modules/gallery/libraries')
-rw-r--r--modules/gallery/libraries/drivers/IdentityProvider.php16
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);