]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/commands/class_BaseCommand.php
Actions (so called sub-commands) may now have own pre/post filter, profile update...
[shipsimu.git] / inc / classes / main / commands / class_BaseCommand.php
index 825b2b052f7944346105cfae40f92fb2cbad5bd9..505d8adab68b3a7ba50f073614952ca01da88970 100644 (file)
@@ -27,11 +27,6 @@ class BaseCommand extends BaseFrameworkSystem {
         */
        private $controllerName = "";
 
-       /**
-        * Resolver instance
-        */
-       private $resolverInstance = null;
-
        /**
         * Protected constructor
         *
@@ -60,25 +55,6 @@ class BaseCommand extends BaseFrameworkSystem {
        public final function getControllerName () {
                return $this->controllerName;
        }
-
-       /**
-        * Setter for resolver instance
-        *
-        * @param       $resolverInstance               Instance of a command resolver class
-        * @return      void
-        */
-       public final function setResolverInstance (CommandResolver $resolverInstance) {
-               $this->resolverInstance = $resolverInstance;
-       }
-
-       /**
-        * Getter for resolver instance
-        *
-        * @return      $resolverInstance               Instance of a command resolver class
-        */
-       public final function getResolverInstance () {
-               return $this->resolverInstance;
-       }
 }
 
 // [EOF]