diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-21 20:10:10 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-21 20:10:10 +0000 |
commit | 05f8aeaf8b08a58267adc6569a64bee38e915b31 (patch) | |
tree | 52f7d91d58a94ca2763b0c8dea00d74a1f5653d3 | |
parent | 0ec7c114a9fa58f8d2bdedcc8129d956da7763fb (diff) | |
download | elgg-05f8aeaf8b08a58267adc6569a64bee38e915b31.tar.gz elgg-05f8aeaf8b08a58267adc6569a64bee38e915b31.tar.bz2 |
No need to document NULL as possible return value here
git-svn-id: http://code.elgg.org/elgg/trunk@8807 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/sessions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/sessions.php b/engine/lib/sessions.php index 3a1648d3f..5d45cc73d 100644 --- a/engine/lib/sessions.php +++ b/engine/lib/sessions.php @@ -18,7 +18,7 @@ global $SESSION; * hook - 'session:get' 'user' to give plugin authors another * way to provide user details to the ACL system without touching the session. * - * @return ElggUser|NULL + * @return ElggUser */ function elgg_get_logged_in_user_entity() { global $SESSION; |