diff options
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 ) { |