diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-14 10:19:47 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-14 10:19:47 -0700 |
commit | 968cd98dfed42e858d3d2953794b21d49dd692d9 (patch) | |
tree | e4548f67151a5f1ed7faf14dde03929b4931bd5f | |
parent | 5b4f3091636afc8de5f81707e95f43baa50b7b4d (diff) |
Indentation and phpDoc fixes
-rw-r--r-- | modules/gallery/helpers/user.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/modules/gallery/helpers/user.php b/modules/gallery/helpers/user.php index f09e963e..16d320e4 100644 --- a/modules/gallery/helpers/user.php +++ b/modules/gallery/helpers/user.php @@ -236,10 +236,7 @@ class user_Core { } /** - * Determine if a feature is supported by the driver. - * - * @param string $feature the name of the feature to check - * @return boolean true if supported + * @see Identity_Core::is_writable. */ static function is_writable() { return Identity::instance()->is_writable(); @@ -248,7 +245,7 @@ class user_Core { /** * @see Identity_Driver::guest. */ -static function guest() { + static function guest() { return Identity::instance()->guest(); } |