Source for file Null.php

Documentation is available at Null.php

  1. <?php
  2.  
  3. /**
  4.  * Null cache object to use when no caching is on.
  5.  */
  6. {
  7.     
  8.     public function add($def$config{
  9.         return false;
  10.     }
  11.     
  12.     public function set($def$config{
  13.         return false;
  14.     }
  15.     
  16.     public function replace($def$config{
  17.         return false;
  18.     }
  19.     
  20.     public function remove($config{
  21.         return false;
  22.     }
  23.     
  24.     public function get($config{
  25.         return false;
  26.     }
  27.     
  28.     public function flush($config{
  29.         return false;
  30.     }
  31.     
  32.     public function cleanup($config{
  33.         return false;
  34.     }
  35.     
  36. }

Documentation generated on Thu, 19 Jun 2008 18:49:50 -0400 by phpDocumentor 1.4.2