diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2013-08-12 09:28:15 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2013-08-12 09:28:15 +0200 |
commit | 08aa4418c30cfc18ccc69a0f0f9cb9e17be6c196 (patch) | |
tree | 577a29fb579188d16003a209ce2a2e9c5b0aa2bd /includes/objectcache/ObjectCacheSessionHandler.php | |
parent | cacc939b34e315b85e2d72997811eb6677996cc1 (diff) |
Update to MediaWiki 1.21.1
Diffstat (limited to 'includes/objectcache/ObjectCacheSessionHandler.php')
-rw-r--r-- | includes/objectcache/ObjectCacheSessionHandler.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/objectcache/ObjectCacheSessionHandler.php b/includes/objectcache/ObjectCacheSessionHandler.php index f55da94d..bc76294a 100644 --- a/includes/objectcache/ObjectCacheSessionHandler.php +++ b/includes/objectcache/ObjectCacheSessionHandler.php @@ -58,7 +58,7 @@ class ObjectCacheSessionHandler { /** * Get a cache key for the given session id. * - * @param $id String: session id + * @param string $id session id * @return String: cache key */ static function getKey( $id ) { @@ -89,7 +89,7 @@ class ObjectCacheSessionHandler { /** * Callback when reading session data. * - * @param $id String: session id + * @param string $id session id * @return Mixed: session data */ static function read( $id ) { @@ -103,7 +103,7 @@ class ObjectCacheSessionHandler { /** * Callback when writing session data. * - * @param $id String: session id + * @param string $id session id * @param $data Mixed: session data * @return Boolean: success */ @@ -116,7 +116,7 @@ class ObjectCacheSessionHandler { /** * Callback to destroy a session when calling session_destroy(). * - * @param $id String: session id + * @param string $id session id * @return Boolean: success */ static function destroy( $id ) { |