]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/constructions/yards/class_Shipyard.php
Method constructor() removed, several small fixes
[shipsimu.git] / application / ship-simu / main / constructions / yards / class_Shipyard.php
index 18a018e4ed53b6a1a6ce8be8a942fcfb57e872a0..29084843a2294ceb728f2a2e011ff9787e42839b 100644 (file)
@@ -20,7 +20,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 Shipyard extends BaseConstruction {
        // Werft-Name
@@ -45,9 +45,9 @@ class Shipyard extends BaseConstruction {
        private $shippingCompany = null;
 
        // Constructor
-       private function __construct () {
+       protected function __construct () {
                // Call parent constructor
-               parent::constructor(__CLASS__);
+               parent::__construct(__CLASS__);
 
                // Debug message
                if (((defined('DEBUG_SHIPYARD')) || (defined('DEBUG_ALL'))) && (defined('DEBUG_CONSTRUCT'))) {
@@ -58,7 +58,7 @@ class Shipyard extends BaseConstruction {
                }
 
                // Set description
-               $this->setPartDescr("Werft");
+               $this->setObjectDescription("Werft");
 
                // Staff-Liste/Schiffstyp-Liste erzeugen
                $this->createStaffList();