MediaWiki  1.23.14
EmptyBagOStuff.php
Go to the documentation of this file.
1 <?php
29 class EmptyBagOStuff extends BagOStuff {
30 
36  function get( $key, &$casToken = null ) {
37  return false;
38  }
39 
46  function set( $key, $value, $exp = 0 ) {
47  return true;
48  }
49 
57  function cas( $casToken, $key, $value, $exp = 0 ) {
58  return true;
59  }
60 
66  function delete( $key, $time = 0 ) {
67  return true;
68  }
69 
77  public function merge( $key, closure $callback, $exptime = 0, $attempts = 10 ) {
78  return true;
79  }
80 }
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
EmptyBagOStuff
A BagOStuff object with no objects in it.
Definition: EmptyBagOStuff.php:29
$time
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition: hooks.txt:1358
BagOStuff
interface is intended to be more or less compatible with the PHP memcached client.
Definition: BagOStuff.php:43
EmptyBagOStuff\merge
merge( $key, closure $callback, $exptime=0, $attempts=10)
Definition: EmptyBagOStuff.php:77
$value
$value
Definition: styleTest.css.php:45
EmptyBagOStuff\cas
cas( $casToken, $key, $value, $exp=0)
Definition: EmptyBagOStuff.php:57