propel-bundle/Command/ModelBuildCommand.php

58 lines
1.5 KiB
PHP
Raw Normal View History

2013-10-31 22:05:29 +01:00
<?php
/**
* This file is part of the PropelBundle package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
*/
namespace Propel\PropelBundle\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
2013-10-31 22:05:29 +01:00
use Symfony\Component\Console\Input\InputInterface;
/**
* @author Kévin Gomez <contact@kevingomez.fr>
*/
class ModelBuildCommand extends AbstractCommand
{
/**
* {@inheritdoc}
*/
protected function configure()
{
parent::configure();
$this
->setName('propel:model:build')
->setDescription('Build the model classes based on Propel XML schemas')
->addOption('connection', null, InputOption::VALUE_IS_ARRAY | InputOption::VALUE_OPTIONAL, 'Connection to use. Example: default, bookstore')
2013-10-31 22:05:29 +01:00
->addArgument('bundle', InputArgument::OPTIONAL, 'The bundle to generate model classes from')
;
}
/**
* {@inheritdoc}
*/
protected function createSubCommandInstance()
{
2013-11-04 13:44:35 +01:00
return new \Propel\Generator\Command\ModelBuildCommand();
2013-10-31 22:05:29 +01:00
}
/**
* {@inheritdoc}
*/
protected function getSubCommandArguments(InputInterface $input)
{
$outputDir = realpath($this->getApplication()->getKernel()->getRootDir().'/../');
return array(
'--output-dir' => $outputDir,
);
}
}