Moved some class fields and their setter/getter to BaseFrameworkSystem.
[core.git] / inc / classes / main / resolver / command / class_BaseCommandResolver.php
index 0994bf168f5385f0899ec765edbcdb447b50945e..283f5558a469bc152fc95d779cdc808e18b35a07 100644 (file)
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 class BaseCommandResolver extends BaseResolver {
-       /**
-        * Validated command name
-        */
-       private $commandName = '';
-
        /**
         * Protected constructor
         *
@@ -38,25 +33,6 @@ class BaseCommandResolver extends BaseResolver {
                parent::__construct($className);
        }
 
-       /**
-        * Setter for command name
-        *
-        * @param       $commandName    Last validated command name
-        * @return      void
-        */
-       protected final function setCommandName ($commandName) {
-               $this->commandName = $commandName;
-       }
-
-       /**
-        * Getter for command name
-        *
-        * @return      $commandName    Last validated command name
-        */
-       protected final function getCommandName () {
-               return $this->commandName;
-       }
-
        /**
         * "Loads" a given command and instances it if not yet cached
         *