Skip to content

Commit

Permalink
Add command for outputting the latest version number
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdto committed Dec 18, 2013
1 parent 62e20bb commit 6d2bd34
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions Command/MigrationsLatestDoctrineCommand.php
Original file line number Diff line number Diff line change
@@ -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);
}
}

2 comments on commit 6d2bd34

@lyrixx
Copy link

@lyrixx lyrixx commented on 6d2bd34 Sep 20, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This break symfony because you did not bump the (composer requirement) to doctrine/migrations.

@iamdto
Copy link
Contributor Author

@iamdto iamdto commented on 6d2bd34 Sep 22, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What should it be? It's already "doctrine/migrations": "~1.0@dev". Is it related to #91?

Please sign in to comment.