00001 <?php 00024 class BirthdayVerifierFilter extends BaseShipSimuFilter implements Filterable { 00030 protected function __construct () { 00031 // Call parent constructor 00032 parent::__construct(__CLASS__); 00033 } 00034 00040 public final static function createBirthdayVerifierFilter () { 00041 // Get a new instance 00042 $filterInstance = new BirthdayVerifierFilter(); 00043 00044 // Return the instance 00045 return $filterInstance; 00046 } 00047 00056 public function execute (Requestable $requestInstance, Responseable $responseInstance) { 00057 // Execute the parent execute method 00058 parent::execute($requestInstance, $responseInstance); 00059 00060 // Implement this! 00061 $this->partialStub("Please implement this method."); 00062 } 00063 } 00064 00065 // [EOF] 00066 ?>
1.5.6