Bladeren bron

Added missing DoctrineCommand imports to DoctrineMigrationsBundle.

Greg Thornton 15 jaren geleden
bovenliggende
commit
0512d13c07

+ 1 - 0
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;
 
 /*

+ 1 - 0
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;
 
 /*

+ 1 - 0
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;
 
 /*

+ 1 - 0
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;
 
 /*

+ 1 - 0
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;
 
 /*

+ 1 - 0
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;
 
 /*