00001 <?php 00025 class WebGovernmentFailedStartupCommand extends BaseCommand implements Commandable { 00031 protected function __construct () { 00032 // Call parent constructor 00033 parent::__construct(__CLASS__); 00034 } 00035 00042 public final static function createWebGovernmentFailedStartupCommand (CommandResolver $resolverInstance) { 00043 // Get new instance 00044 $commandInstance = new WebGovernmentFailedStartupCommand(); 00045 00046 // Set the application instance 00047 $commandInstance->setResolverInstance($resolverInstance); 00048 00049 // Return the prepared instance 00050 return $commandInstance; 00051 } 00052 00061 public function execute (Requestable $requestInstance, Responseable $responseInstance) { 00062 $this->partialStub("Unfinished method."); 00063 } 00064 00073 public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) { 00074 // Empty for now 00075 } 00076 } 00077 00078 // [EOF] 00079 ?>
1.5.6