From 0512d13c07196b676e01ecad704572025e5a5608 Mon Sep 17 00:00:00 2001 From: Greg Thornton Date: Fri, 21 May 2010 21:56:38 -0500 Subject: [PATCH] Added missing DoctrineCommand imports to DoctrineMigrationsBundle. --- .../Command/MigrationsDiffDoctrineCommand.php | 1 + .../Command/MigrationsExecuteDoctrineCommand.php | 1 + .../Command/MigrationsGenerateDoctrineCommand.php | 1 + .../Command/MigrationsMigrateDoctrineCommand.php | 1 + .../Command/MigrationsStatusDoctrineCommand.php | 1 + .../Command/MigrationsVersionDoctrineCommand.php | 1 + 6 files changed, 6 insertions(+) diff --git a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsDiffDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsDiffDoctrineCommand.php index 8a31a20fdb..b654b12771 100644 --- a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsDiffDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsDiffDoctrineCommand.php @@ -5,6 +5,7 @@ namespace Symfony\Framework\DoctrineMigrationsBundle\Command; use Symfony\Components\Console\Input\InputInterface; use Symfony\Components\Console\Output\OutputInterface; use Symfony\Components\Console\Input\InputOption; +use Symfony\Framework\DoctrineBundle\Command\DoctrineCommand; use Doctrine\DBAL\Migrations\Tools\Console\Command\DiffCommand; /* diff --git a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsExecuteDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsExecuteDoctrineCommand.php index e40fe444f7..45bc96bd99 100644 --- a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsExecuteDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsExecuteDoctrineCommand.php @@ -5,6 +5,7 @@ namespace Symfony\Framework\DoctrineMigrationsBundle\Command; use Symfony\Components\Console\Input\InputInterface; use Symfony\Components\Console\Output\OutputInterface; use Symfony\Components\Console\Input\InputOption; +use Symfony\Framework\DoctrineBundle\Command\DoctrineCommand; use Doctrine\DBAL\Migrations\Tools\Console\Command\ExecuteCommand; /* diff --git a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsGenerateDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsGenerateDoctrineCommand.php index 344719dcb6..3ee49c6148 100644 --- a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsGenerateDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsGenerateDoctrineCommand.php @@ -5,6 +5,7 @@ namespace Symfony\Framework\DoctrineMigrationsBundle\Command; use Symfony\Components\Console\Input\InputInterface; use Symfony\Components\Console\Output\OutputInterface; use Symfony\Components\Console\Input\InputOption; +use Symfony\Framework\DoctrineBundle\Command\DoctrineCommand; use Doctrine\DBAL\Migrations\Tools\Console\Command\GenerateCommand; /* diff --git a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsMigrateDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsMigrateDoctrineCommand.php index 395a59c975..8b1eeb6cdc 100644 --- a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsMigrateDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsMigrateDoctrineCommand.php @@ -5,6 +5,7 @@ namespace Symfony\Framework\DoctrineMigrationsBundle\Command; use Symfony\Components\Console\Input\InputInterface; use Symfony\Components\Console\Output\OutputInterface; use Symfony\Components\Console\Input\InputOption; +use Symfony\Framework\DoctrineBundle\Command\DoctrineCommand; use Doctrine\DBAL\Migrations\Tools\Console\Command\MigrateCommand; /* diff --git a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsStatusDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsStatusDoctrineCommand.php index 58e3f30d3c..a9eae5fa24 100644 --- a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsStatusDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsStatusDoctrineCommand.php @@ -5,6 +5,7 @@ namespace Symfony\Framework\DoctrineMigrationsBundle\Command; use Symfony\Components\Console\Input\InputInterface; use Symfony\Components\Console\Output\OutputInterface; use Symfony\Components\Console\Input\InputOption; +use Symfony\Framework\DoctrineBundle\Command\DoctrineCommand; use Doctrine\DBAL\Migrations\Tools\Console\Command\StatusCommand; /* diff --git a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsVersionDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsVersionDoctrineCommand.php index 84d6a9a4f3..e3c18d915d 100644 --- a/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsVersionDoctrineCommand.php +++ b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsVersionDoctrineCommand.php @@ -5,6 +5,7 @@ namespace Symfony\Framework\DoctrineMigrationsBundle\Command; use Symfony\Components\Console\Input\InputInterface; use Symfony\Components\Console\Output\OutputInterface; use Symfony\Components\Console\Input\InputOption; +use Symfony\Framework\DoctrineBundle\Command\DoctrineCommand; use Doctrine\DBAL\Migrations\Tools\Console\Command\VersionCommand; /*