00001 <?php 00024 class ShipSimuWebNewsFactory extends BaseFrameworkSystem { 00030 protected function __construct () { 00031 // Call parent constructor 00032 parent::__construct(__CLASS__); 00033 00034 // Clean up a little 00035 $this->removeNumberFormaters(); 00036 $this->removeSystemArray(); 00037 } 00038 00044 public final static function createShipSimuWebNewsFactory () { 00045 // Get a new instance 00046 $factoryInstance = new ShipSimuWebNewsFactory(); 00047 00048 // Return the prepared instance 00049 return $factoryInstance; 00050 } 00051 00058 public function createNewObject (Requestable $requestInstance) { 00059 // Do some stuff here 00060 } 00061 } 00062 00063 // [EOF] 00064 ?>
1.5.6