00001 <?php 00024 class ShipSimuProfileAction extends BaseShipSimuAction implements PerformableAction { 00030 protected function __construct () { 00031 // Call parent constructor 00032 parent::__construct(__CLASS__); 00033 } 00034 00040 public final static function createShipSimuProfileAction () { 00041 // Get a new instance 00042 $actionInstance = new ShipSimuProfileAction(); 00043 00044 // Return the instance 00045 return $actionInstance; 00046 } 00047 00055 */ 00056 public function execute (Requestable $requestInstance, Responseable $responseInstance) { 00057 // Call parent execute method 00058 parent::execute($requestInstance, $responseInstance); 00059 00060 // Add your code here... 00061 } 00062 } 00063 00064 // [EOF] 00065 ?>
1.5.6