MediaWiki  master
EmptyBagOStuff.php
Go to the documentation of this file.
00001 <?php
00029 class EmptyBagOStuff extends BagOStuff {
00030 
00035         function get( $key ) {
00036                 return false;
00037         }
00038 
00045         function set( $key, $value, $exp = 0 ) {
00046                 return true;
00047         }
00048 
00054         function delete( $key, $time = 0 ) {
00055                 return true;
00056         }
00057 }
00058 
00063 class FakeMemCachedClient extends EmptyBagOStuff {
00064 }