X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fobjectcache%2FObjectCacheSessionHandler.php;h=7cf960e7d0660ba61dc21d1214f923ac44da96f7;hb=1e654405af3a9f41cd9ccf6803a610b559dff92c;hp=e6c68818a407bc62d2f0a00e3f9f957a4dae3d20;hpb=a38bde74e124f6736202aab8b4842b4db4aa02ce;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/objectcache/ObjectCacheSessionHandler.php b/includes/objectcache/ObjectCacheSessionHandler.php index e6c68818a4..7cf960e7d0 100644 --- a/includes/objectcache/ObjectCacheSessionHandler.php +++ b/includes/objectcache/ObjectCacheSessionHandler.php @@ -1,5 +1,5 @@ get( self::getKey( $id ) ); - if( $data === false ) { + if ( $data === false ) { return ''; } return $data; @@ -96,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 */ @@ -109,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 ) { @@ -129,7 +136,7 @@ class ObjectCacheSessionHandler { } /** - * Shutdown function. See the comment inside ObjectCacheSessionHandler::install + * Shutdown function. See the comment inside ObjectCacheSessionHandler::install * for rationale. */ static function handleShutdown() {