X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fselector%2Fclass_ApplicationSelector.php;h=a7f3294d1f8458615fea5befad9c3cc703cf1ed7;hb=1798410d1248aa1fb0dd0b08fec1948c36aa8a26;hp=b0866dcb8e97d37b00fa69def9d9ce0eaa822e0a;hpb=42b66268af2c7d8872aca3e2fffb76d60954e9f5;p=shipsimu.git diff --git a/application/selector/class_ApplicationSelector.php b/application/selector/class_ApplicationSelector.php index b0866dc..a7f3294 100644 --- a/application/selector/class_ApplicationSelector.php +++ b/application/selector/class_ApplicationSelector.php @@ -22,7 +22,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 . + * along with this program. If not, see . */ class ApplicationSelector extends BaseFrameworkSystem { /** @@ -54,12 +54,12 @@ class ApplicationSelector extends BaseFrameworkSystem { * * @return void */ - private function __construct() { + protected function __construct() { // Call parent constructor - parent::constructor(__CLASS__); + parent::__construct(__CLASS__); // Set description - $this->setPartDescr("Applikationswechsler"); + $this->setObjectDescription("Applikationswechsler"); // Create unique ID number $this->createUniqueID(); @@ -157,7 +157,7 @@ class ApplicationSelector extends BaseFrameworkSystem { * * @param $tplEngine An instance of TemplateEngine */ - private function setSelectorTemplateEngine (CompileableTemplate $tplEngine) { + private final function setSelectorTemplateEngine (CompileableTemplate $tplEngine) { $this->selectorTplEngine = $tplEngine; } @@ -166,7 +166,7 @@ class ApplicationSelector extends BaseFrameworkSystem { * * @return $selectTplEngine The selector's template engine */ - private function getSelectorTemplateEngine () { + private final function getSelectorTemplateEngine () { return $this->selectorTplEngine; } @@ -176,7 +176,7 @@ class ApplicationSelector extends BaseFrameworkSystem { * @return $loadedTemplates An array object holding all loaded * application templates */ - private function getLoadedTemplates () { + private final function getLoadedTemplates () { return $this->loadedTemplates; } @@ -286,7 +286,7 @@ class ApplicationSelector extends BaseFrameworkSystem { * * @return void */ - public function removeDirIgnoreList () { + public final function removeDirIgnoreList () { unset($this->dirIgnoreList); }