Skip to content

Commit

Permalink
Merge pull request #85 from iamdto/latest-command
Browse files Browse the repository at this point in the history
Add command for outputting the latest version number
  • Loading branch information
odino committed Mar 16, 2014
2 parents 84085d3 + 6d2bd34 commit bf9bcb3
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions Command/MigrationsLatestDoctrineCommand.php
@@ -0,0 +1,50 @@
<?php

/*
* This file is part of the Doctrine MigrationsBundle
*
* The code was originally distributed inside the Symfony framework.
*
* (c) Fabien Potencier <fabien@symfony.com>
* (c) Doctrine Project, Benjamin Eberlei <kontakt@beberlei.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Doctrine\Bundle\MigrationsBundle\Command;

use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputOption;
use Doctrine\Bundle\DoctrineBundle\Command\Proxy\DoctrineCommandHelper;
use Doctrine\DBAL\Migrations\Tools\Console\Command\LatestCommand;

/**
* Command for outputting the latest version number.
*
* @author Fabien Potencier <fabien@symfony.com>
* @author Jonathan H. Wage <jonwage@gmail.com>
*/
class MigrationsLatestDoctrineCommand extends LatestCommand
{
protected function configure()
{
parent::configure();

$this
->setName('doctrine:migrations:latest')
->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command.')
;
}

public function execute(InputInterface $input, OutputInterface $output)
{
DoctrineCommandHelper::setApplicationEntityManager($this->getApplication(), $input->getOption('em'));

$configuration = $this->getMigrationConfiguration($input, $output);
DoctrineCommand::configureMigrations($this->getApplication()->getKernel()->getContainer(), $configuration);

parent::execute($input, $output);
}
}

0 comments on commit bf9bcb3

Please sign in to comment.