]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/constructions/berths/class_Berth.php
Method constructor() removed, several small fixes
[shipsimu.git] / application / ship-simu / main / constructions / berths / class_Berth.php
index b802608ae172a3c545659fcb2c43e2bd88a7a0a3..b8bd26c690c6fe09f9f2e46f91cab4b65dbbf00f 100644 (file)
@@ -19,7 +19,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 class Berth extends BaseConstruction {
        // Durchlaufende Nummer der Liegeplaetze
@@ -29,7 +29,7 @@ class Berth extends BaseConstruction {
        private $harborInstance = null;
 
        // Konstruktor
-       private function __construct () {
+       protected function __construct () {
                if (((defined('DEBUG_MODE')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) {
                        $this->getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.<br />\n",
                                __CLASS__,
@@ -38,10 +38,10 @@ class Berth extends BaseConstruction {
                }
 
                // Call parent constructor
-               parent::constructor(__CLASS__);
+               parent::__construct(__CLASS__);
 
                // Set description
-               $this->setPartDescr("Liegeplatz");
+               $this->setObjectDescription("Liegeplatz");
 
                // Generate unique ID number
                $this->createUniqueID();