diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:12:12 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:12:12 -0400 |
commit | c9aa36da061816dee256a979c2ff8d2ee41824d9 (patch) | |
tree | 29f7002b80ee984b488bd047dbbd80b36bf892e9 /includes/objectcache/WinCacheBagOStuff.php | |
parent | b4274e0e33eafb5e9ead9d949ebf031a9fb8363b (diff) | |
parent | d1ba966140d7a60cd5ae4e8667ceb27c1a138592 (diff) |
Merge branch 'archwiki'
# Conflicts:
# skins/ArchLinux.php
# skins/ArchLinux/archlogo.gif
Diffstat (limited to 'includes/objectcache/WinCacheBagOStuff.php')
-rw-r--r-- | includes/objectcache/WinCacheBagOStuff.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/includes/objectcache/WinCacheBagOStuff.php b/includes/objectcache/WinCacheBagOStuff.php index 6d9b47ad..78a512ce 100644 --- a/includes/objectcache/WinCacheBagOStuff.php +++ b/includes/objectcache/WinCacheBagOStuff.php @@ -32,8 +32,8 @@ class WinCacheBagOStuff extends BagOStuff { /** * Get a value from the WinCache object cache * - * @param string $key cache key - * @param $casToken[optional] int: cas token + * @param string $key Cache key + * @param int $casToken [optional] Cas token * @return mixed */ public function get( $key, &$casToken = null ) { @@ -51,9 +51,9 @@ class WinCacheBagOStuff extends BagOStuff { /** * Store a value in the WinCache object cache * - * @param string $key cache key - * @param $value Mixed: object to store - * @param int $expire expiration time + * @param string $key Cache key + * @param mixed $value Value to store + * @param int $expire Expiration time * @return bool */ public function set( $key, $value, $expire = 0 ) { @@ -67,10 +67,10 @@ class WinCacheBagOStuff extends BagOStuff { /** * Store a value in the WinCache object cache, race condition-safe * - * @param int $casToken cas token - * @param string $key cache key - * @param int $value object to store - * @param int $exptime expiration time + * @param int $casToken Cas token + * @param string $key Cache key + * @param int $value Object to store + * @param int $exptime Expiration time * @return bool */ public function cas( $casToken, $key, $value, $exptime = 0 ) { @@ -80,8 +80,8 @@ class WinCacheBagOStuff extends BagOStuff { /** * Remove a value from the WinCache object cache * - * @param string $key cache key - * @param int $time not used in this implementation + * @param string $key Cache key + * @param int $time Not used in this implementation * @return bool */ public function delete( $key, $time = 0 ) { |