Example #1
0
 /**
  * (non-PHPdoc)
  *
  * @see \SK\ITCBundle\Code\AbstractGenerator\Generator::configure()
  */
 protected function configure()
 {
     $this->addArgument('namespace', InputArgument::OPTIONAL, 'Namespace Name', 'AppBundle\\DTD\\Document');
     $this->addArgument('parentClass', InputArgument::OPTIONAL, 'Entity Generalized Class', '\\SK\\ITCBundle\\DTD\\Document');
     $this->addArgument('output', InputArgument::OPTIONAL, 'Output Folder', 'src/AppBundle/DTD/Document');
     parent::configure();
 }
Example #2
0
 /**
  * (non-PHPdoc)
  *
  * @see \SK\ITCBundle\Code\AbstractGenerator\Generator::configure()
  */
 protected function configure()
 {
     $this->addArgument('elementNamespace', InputArgument::OPTIONAL, 'Namespace Name', 'AppBundle\\DTD\\%s\\Element');
     $this->addArgument('elementParentClass', InputArgument::OPTIONAL, 'Element Parent Class', '\\SK\\ITCBundle\\DTD\\Element');
     $this->addArgument('elementOutput', InputArgument::OPTIONAL, 'Output Folder', 'src/AppBundle/DTD/%s/Element');
     parent::configure();
 }
 /**
  * (non-PHPdoc)
  *
  * @see \SK\ITCBundle\Code\AbstractGenerator\Generator::configure()
  */
 protected function configure()
 {
     $this->addArgument('attlistNamespace', InputArgument::OPTIONAL, 'Namespace Name', 'AppBundle\\DTD\\AttributeList');
     $this->addArgument('attlistParentClass', InputArgument::OPTIONAL, 'Entity Generalized Class', '\\SK\\ITCBundle\\DTD\\%s\\AttributeList');
     $this->addArgument('attlistOutput', InputArgument::OPTIONAL, 'Output Folder', 'src/AppBundle/DTD/%s/AttributeList');
     parent::configure();
 }
Example #4
0
 /**
  * (non-PHPdoc)
  *
  * @see \SK\ITCBundle\Code\AbstractGenerator\Generator::configure()
  */
 protected function configure()
 {
     $this->addArgument('output', InputArgument::OPTIONAL, 'Output Folder', 'src/AppBundle/Resource/config');
     parent::configure();
 }