Grammar fixed
[core.git] / inc / classes / main / resolver / command / image / class_ImageCommandResolver.php
index 1924e49adfe877cd452f1b1c260157dc9e98fb0d..633a6233f49db4c75309cf53e564e19b6e3cb397 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007 - 2009 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,10 +82,10 @@ class ImageCommandResolver extends BaseCommandResolver implements CommandResolve
         */
        public function resolveCommandByRequest (Requestable $requestInstance) {
                // Init variables
-               $commandName = "";
+               $commandName = '';
                $commandInstance = null;
 
-               // This goes fine so let's resolv the command
+               // This goes fine so let's resolve the command
                $commandName = $requestInstance->getRequestElement('page');
 
                // Is the command empty? Then fall back to default command
@@ -155,10 +155,8 @@ class ImageCommandResolver extends BaseCommandResolver implements CommandResolve
                // Init command instance
                $commandInstance = null;
 
-               // Create command class name
-               $this->setClassName(sprintf("Image%sCommand",
-                       $this->convertToClassName($commandName)
-               ));
+               // Create class name
+               $className = 'Image' . $this->convertToClassName($commandName) . 'Command';
 
                // Is this class loaded?
                if (!class_exists($this->getClassName())) {