コード例 #1
0
ファイル: ORM.php プロジェクト: slavomirkuzma/itc-bundle
 /**
  * (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();
 }
コード例 #2
0
ファイル: Bundle.php プロジェクト: slavomirkuzma/itc-bundle
 /**
  * (non-PHPdoc)
  *
  * @see \SK\ITCBundle\Code\Generator\WSDL\Generator::configure()
  */
 protected function configure()
 {
     parent::configure();
 }
コード例 #3
0
 /**
  * (non-PHPdoc)
  *
  * @see \SK\ITCBundle\Code\Generator\WSDL\Generator::configure()
  */
 protected function configure()
 {
     $this->addOption("controllerClass", "controller", InputOption::VALUE_OPTIONAL, "SOAP Client Class", 'SK\\ITCBundle\\Controller\\AbstractController');
     parent::configure();
 }