Moved some class fields and their setter/getter to BaseFrameworkSystem.
[core.git] / inc / classes / main / commands / class_BaseCommand.php
index 05fd5ce656aadd56d4862e5b3114f01496dd306c..efb9d16dd0411ff4ac84bafaf5274c560bce0a5a 100644 (file)
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 class BaseCommand extends BaseFrameworkSystem {
-       /**
-        * The controller we need for this command
-        */
-       private $controllerName = '';
-
        /**
         * Protected constructor
         *
@@ -37,25 +32,6 @@ class BaseCommand extends BaseFrameworkSystem {
                // Call parent constructor
                parent::__construct($className);
        }
-
-       /**
-        * Setter for controller name
-        *
-        * @param       $controllerName         Name of the controller assigned with this command
-        * @return      void
-        */
-       public final function setControllerName ($controllerName) {
-               $this->controllerName = (string) $controllerName;
-       }
-
-       /**
-        * Getter for controller name
-        *
-        * @return      $controllerName         Name of the controller assigned with this command
-        */
-       public final function getControllerName () {
-               return $this->controllerName;
-       }
 }
 
 // [EOF]