]> git.mxchange.org Git - shipsimu.git/blobdiff - application/ship-simu/main/personell/class_SimulatorPersonell.php
more 'final' statements added
[shipsimu.git] / application / ship-simu / main / personell / class_SimulatorPersonell.php
index 532ca3f394f20ba77f27aa9b075775e16bc188da..1d148ddb69d85809946e214177370e006cf6ea8a 100644 (file)
@@ -1,6 +1,26 @@
 <?php
-
-// Die Schiffsbesatzung
+/**
+ * The general simulator personell class
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @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
+ *
+ * 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
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * 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/>.
+ */
 class SimulatorPersonell extends BasePersonell {
        // Personell list
        private $personellList = null;
@@ -58,7 +78,7 @@ class SimulatorPersonell extends BasePersonell {
         * @return      $personellInstance              An instance of this object with a
         *                                                              list of personells
         */
-       public static function createSimulatorPersonell ($amountPersonell) {
+       public final static function createSimulatorPersonell ($amountPersonell) {
                // Make sure only integer can pass
                $amountPersonell = (int) $amountPersonell;
 
@@ -318,7 +338,7 @@ class SimulatorPersonell extends BasePersonell {
         * @param               $cacheList      The new cache list to set or null for initialization/reset
         * @return      void
         */
-       private function setAllCacheList (FrameworkArrayObject $cacheList = null) {
+       private final function setAllCacheList (FrameworkArrayObject $cacheList = null) {
                $this->cacheList = $cacheList;
        }
 
@@ -328,7 +348,7 @@ class SimulatorPersonell extends BasePersonell {
         * @param               $cacheCond      The new cache conditions to set
         * @return      void
         */
-       private function setCacheCond ($cacheCond) {
+       private final function setCacheCond ($cacheCond) {
                $this->cacheCond = (string) $cacheCond;
        }