*/ class ReverseCommand extends PhingCommand { /** * @see Command */ protected function configure() { $this ->setDescription('Generate XML schema from reverse-engineered database') ->addOption('connection', null, InputOption::VALUE_OPTIONAL, 'Set this parameter to define a connection to use') ->setHelp(<<propel:reverse command generates an XML schema from reverse-engineered database. php app/console propel:reverse The --connection parameter allows you to change the connection to use. The default connection is the active connection (propel.dbal.default_connection). EOT ) ->setName('propel:reverse') ; } /** * @see Command * * @throws \InvalidArgumentException When the target directory does not exist */ protected function execute(InputInterface $input, OutputInterface $output) { list($name, $defaultConfig) = $this->getConnection($input, $output); $this->callPhing('reverse', array( 'propel.project' => $name, 'propel.database.url' => $defaultConfig['connection']['dsn'], 'propel.database.database' => $defaultConfig['adapter'], 'propel.database.user' => $defaultConfig['connection']['user'], 'propel.database.password' => $defaultConfig['connection']['password'], )); $filesystem = new Filesystem(); $generated = $this->getTmpDir().'/schema.xml'; $destFile = $this->getApplication()->getKernel()->getRootDir() . '/propel/' . $name . '_reversed_schema.xml'; if (file_exists($generated)) { $filesystem->copy($generated, $destFile); $output->writeln(sprintf('New generated schema is %s.', $dest)); } else { $output->writeln('No generated files.'); } } }