/**
  * @param string $formType
  */
 public function __construct($formType)
 {
     $this->formType = $formType;
     parent::__construct();
 }
 /**
  * @param string $formType
  * @param string $commandName
  */
 public function __construct($formType, $commandName)
 {
     $this->formType = $formType;
     $this->commandName = $commandName;
     parent::__construct();
 }