X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fresolver%2Fcommand%2Fweb%2Fclass_WebCommandResolver.php;h=0ebd4e8adf423d556aff8699c44577289f5c70bb;hp=42ae37a845abc678fac4d93699f19f5e6c3d3a41;hb=bd41407a04990cd8220fafd17e52404c0677fe0b;hpb=c6d73b0e3246efc824cb98338d4be7ee5bc9f308 diff --git a/inc/classes/main/resolver/command/web/class_WebCommandResolver.php b/inc/classes/main/resolver/command/web/class_WebCommandResolver.php index 42ae37a8..0ebd4e8a 100644 --- a/inc/classes/main/resolver/command/web/class_WebCommandResolver.php +++ b/inc/classes/main/resolver/command/web/class_WebCommandResolver.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -82,7 +82,7 @@ class WebCommandResolver extends BaseCommandResolver implements CommandResolver */ public function resolveCommandByRequest (Requestable $requestInstance) { // Init variables - $commandName = ""; + $commandName = ''; $commandInstance = null; // This goes fine so let's resolv the command @@ -155,10 +155,11 @@ class WebCommandResolver extends BaseCommandResolver implements CommandResolver // Init command instance $commandInstance = null; + // Create class name + $className = 'Web' . $this->convertToClassName($commandName) . 'Command'; + // Create command class name - $this->setClassName(sprintf("Web%sCommand", - $this->convertToClassName($commandName) - )); + $this->setClassName($className); // Is this class loaded? if (!class_exists($this->getClassName())) {