00001 <?php 00024 class Berth extends BaseConstruction { 00025 // Durchlaufende Nummer der Liegeplaetze 00026 private $berthIndex = 0; 00027 00028 // Zugewiesener Hafen 00029 private $harborInstance = null; 00030 00031 // Konstruktor 00032 protected function __construct () { 00033 // Call parent constructor 00034 parent::__construct(__CLASS__); 00035 } 00036 } 00037 00038 // [EOF] 00039 ?>
1.5.6