00001 <?php 00025 class NullFilter extends BaseFilter implements Filterable { 00031 protected function __construct () { 00032 // Call parent constructor 00033 parent::__construct(__CLASS__); 00034 } 00035 00041 public final static function createNullFilter () { 00042 // Get a new instance 00043 $filterInstance = new NullFilter(); 00044 00045 // Return the instance 00046 return $filterInstance; 00047 } 00048 00056 public function execute (Requestable $requestInstance, Responseable $responseInstance) { 00057 // Not implemented, just passing through 00058 } 00059 } 00060 00061 // [EOF] 00062 ?>
1.5.6