]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/class_
More renamed
[shipsimu.git] / application / ship-simu / main / class_
index 2d6541c3d4624b59394ffe2275517fb8c7d6b53f..956f6c525d684a75ad5debf577da59d229506582 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -30,33 +30,19 @@ class ??? extends BaseFrameworkSystem {
        protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
-
-               // Set part description
-               $this->setObjectDescription("");
-
-               // Create unique ID number
-               $this->generateUniqueId();
-
-               // Clean up a little
-               $this->removeNumberFormaters();
-               $this->removeSystemArray();
        }
 
        /**
         * Creates an instance of this money bank class
         *
-        * @param       $userInstance   A class instance of a user object
-        * @return      $bankInstance   An instance of this class
+        * @return      $???Instance    An instance of this class
         */
-       public final static function create??? (ManageableAccount $userInstance) {
+       public final static function create??? () {
                // Get a new instance
-               $moneyInstance = new ???();
-
-               // Set the user instance
-               $moneyInstance->setUserInstance($userInstance);
+               $???Instance = new ???();
 
                // Return the prepared instance
-               return $moneyInstance;
+               return $???Instance;
        }
 }