00001 <?php 00024 class WebDoFormCommand extends BaseCommand implements Commandable { 00030 protected function __construct () { 00031 // Call parent constructor 00032 parent::__construct(__CLASS__); 00033 } 00034 00041 public final static function createWebDoFormCommand (CommandResolver $resolverInstance) { 00042 // Get new instance 00043 $commandInstance = new WebDoFormCommand(); 00044 00045 // Set the application instance 00046 $commandInstance->setResolverInstance($resolverInstance); 00047 00048 // Return the prepared instance 00049 return $commandInstance; 00050 } 00051 00059 public function execute (Requestable $requestInstance, Responseable $responseInstance) { 00060 // Should never be executed... 00061 $this->debugBackTrace(); 00062 } 00063 00071 public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) { 00072 // Empty for now 00073 } 00074 00075 } 00076 00077 // [EOF] 00078 ?>
1.5.6