]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/middleware/class_BaseMiddleware.php
Just a space removed
[shipsimu.git] / inc / classes / middleware / class_BaseMiddleware.php
index e0a8b6b79e1aee6d55c4322234b08ae23bdd12cd..472aa8ba717bb14d1feeed04d43a9fee9ad483df 100644 (file)
@@ -3,10 +3,11 @@
  * An abstract middleware class for all other middlware classes
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
- * @version            0.0
+ * @version            0.0.0
  * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
- *
+ * @link               http://www.ship-simu.org
+ * 
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  */
 class BaseMiddleware extends BaseFrameworkSystem {
        /**
-        * Private constructor
+        * Protected constructor
         *
         * @return      void
         */
-       private function __construct ($class) {
+       protected function __construct ($class) {
                // Call parent constructor
-               parent::constructor($class);
+               parent::__construct($class);
 
                // Clean up a little
                $this->removeNumberFormaters();
-       }
-
-       /**
-        * Public constructor
-        *
-        * @return      void
-        */
-       public function constructor ($class) {
-               // Just call the private constructor
-               $this->__construct($class);
+               $this->removeSystemArray();
        }
 }