X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Fships%2Fpassenger%2Fclass_PassengerShip.php;h=f2ac31a9b143876deacba27359dbcd29213e470c;hp=52a227a12d2842ad9b9f4c7a25b98625fa9210bb;hb=9e29c40258d287d2fe93aa8ef0e1ea814399419f;hpb=b44e5e7347f9a1dbd49b5b47d506a4f6526caf2f diff --git a/application/ship-simu/main/ships/passenger/class_PassengerShip.php b/application/ship-simu/main/ships/passenger/class_PassengerShip.php index 52a227a..f2ac31a 100644 --- a/application/ship-simu/main/ships/passenger/class_PassengerShip.php +++ b/application/ship-simu/main/ships/passenger/class_PassengerShip.php @@ -7,7 +7,7 @@ * @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 + * @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 @@ -22,7 +22,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -class PassengerShip extends BaseShip implements ConstructableShip, LimitableObject { +class PassengerShip extends BaseShip implements ConstructableShip { // Konstruktor protected function __construct () { // Eltern-Kontruktor aufrufen @@ -49,7 +49,7 @@ class PassengerShip extends BaseShip implements ConstructableShip, LimitableObje __CLASS__, __LINE__ )); - } + } // END - if // Set ship's name $passInstance->setShipName($shipName); @@ -66,7 +66,7 @@ class PassengerShip extends BaseShip implements ConstructableShip, LimitableObje if (is_null($struct)) { // Empty structures list! throw new EmptyStructuresListException($this, self::EXCEPTION_EMPTY_STRUCTURES_ARRAY); - } + } // END - if // Anzahl Betten auf 0 setzen $numBeds = 0; @@ -108,7 +108,7 @@ class PassengerShip extends BaseShip implements ConstructableShip, LimitableObje $el->getObjectDescription() )); } - } + } // END - for if ((defined('DEBUG_SHIP')) || (defined('DEBUG_ALL'))) $this->getDebugInstance()->output(sprintf("[%s:%d] Das %s mit dem Namen %s hat %d Betten.
\n", __CLASS__, @@ -121,20 +121,6 @@ class PassengerShip extends BaseShip implements ConstructableShip, LimitableObje // Anzahl zurueckliefern return $numBeds; } - - /** - * Reduces the volume of a processed object. - * - * @param $limitInstance An instance to ObjectLimits which holds - * attribute names that we want to include in the processing - * phase. Other attributes except $uniqueID and $realClass will - * be ignored and keept out. - * @return void - */ - function limitObject (ObjectLimits $limitInstance) { - // Work in progress - $this->partialStub("Unfinished method called."); - } } // [EOF]