]> git.mxchange.org Git - hub.git/blobdiff - inc/classes/middleware/class_BaseMiddleware.php
Code syncronized with shipsimu code base
[hub.git] / inc / classes / middleware / class_BaseMiddleware.php
index 1cc69f6d3fc99f00f3968b3fca6ce01c8eff8361..48e7b1c24860281ff64a7660a3ebeb681f742e93 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An abstract middleware class for all other middlware classes
  *
- * @author             Roland Haeder <webmaster@mxchange.org>
+ * @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, this is free software
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @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
@@ -25,14 +25,16 @@ class BaseMiddleware extends BaseFrameworkSystem {
        /**
         * Protected constructor
         *
+        * @param       $className      Name of the class
         * @return      void
         */
-       protected function __construct ($class) {
+       protected function __construct ($className) {
                // Call parent constructor
-               parent::__construct($class);
+               parent::__construct($className);
 
                // Clean up a little
                $this->removeNumberFormaters();
+               $this->removeSystemArray();
        }
 }