Sfoglia il codice sorgente

[DoctrineBundle] fixed DoctrineBundle migration namespaces

ornicar 15 anni fa
parent
commit
efc4777b23

+ 1 - 1
src/Symfony/Framework/DoctrineBundle/Command/MigrationsDiffDoctrineCommand.php

@@ -5,7 +5,7 @@ namespace Symfony\Framework\DoctrineBundle\Command;
 use Symfony\Components\Console\Input\InputInterface;
 use Symfony\Components\Console\Output\OutputInterface;
 use Symfony\Components\Console\Input\InputOption;
-use DoctrineExtensions\Migrations\Tools\Console\Command\DiffCommand;
+use Doctrine\DBAL\Migrations\Tools\Console\Command\DiffCommand;
 
 /*
  * This file is part of the Symfony framework.

+ 1 - 1
src/Symfony/Framework/DoctrineBundle/Command/MigrationsExecuteDoctrineCommand.php

@@ -5,7 +5,7 @@ namespace Symfony\Framework\DoctrineBundle\Command;
 use Symfony\Components\Console\Input\InputInterface;
 use Symfony\Components\Console\Output\OutputInterface;
 use Symfony\Components\Console\Input\InputOption;
-use DoctrineExtensions\Migrations\Tools\Console\Command\ExecuteCommand;
+use Doctrine\DBAL\Migrations\Tools\Console\Command\ExecuteCommand;
 
 /*
  * This file is part of the Symfony framework.

+ 1 - 1
src/Symfony/Framework/DoctrineBundle/Command/MigrationsGenerateDoctrineCommand.php

@@ -5,7 +5,7 @@ namespace Symfony\Framework\DoctrineBundle\Command;
 use Symfony\Components\Console\Input\InputInterface;
 use Symfony\Components\Console\Output\OutputInterface;
 use Symfony\Components\Console\Input\InputOption;
-use DoctrineExtensions\Migrations\Tools\Console\Command\GenerateCommand;
+use Doctrine\DBAL\Migrations\Tools\Console\Command\GenerateCommand;
 
 /*
  * This file is part of the Symfony framework.

+ 1 - 1
src/Symfony/Framework/DoctrineBundle/Command/MigrationsMigrateDoctrineCommand.php

@@ -5,7 +5,7 @@ namespace Symfony\Framework\DoctrineBundle\Command;
 use Symfony\Components\Console\Input\InputInterface;
 use Symfony\Components\Console\Output\OutputInterface;
 use Symfony\Components\Console\Input\InputOption;
-use DoctrineExtensions\Migrations\Tools\Console\Command\MigrateCommand;
+use Doctrine\DBAL\Migrations\Tools\Console\Command\MigrateCommand;
 
 /*
  * This file is part of the Symfony framework.

+ 1 - 1
src/Symfony/Framework/DoctrineBundle/Command/MigrationsStatusDoctrineCommand.php

@@ -5,7 +5,7 @@ namespace Symfony\Framework\DoctrineBundle\Command;
 use Symfony\Components\Console\Input\InputInterface;
 use Symfony\Components\Console\Output\OutputInterface;
 use Symfony\Components\Console\Input\InputOption;
-use DoctrineExtensions\Migrations\Tools\Console\Command\StatusCommand;
+use Doctrine\DBAL\Migrations\Tools\Console\Command\StatusCommand;
 
 /*
  * This file is part of the Symfony framework.

+ 1 - 1
src/Symfony/Framework/DoctrineBundle/Command/MigrationsVersionDoctrineCommand.php

@@ -5,7 +5,7 @@ namespace Symfony\Framework\DoctrineBundle\Command;
 use Symfony\Components\Console\Input\InputInterface;
 use Symfony\Components\Console\Output\OutputInterface;
 use Symfony\Components\Console\Input\InputOption;
-use DoctrineExtensions\Migrations\Tools\Console\Command\VersionCommand;
+use Doctrine\DBAL\Migrations\Tools\Console\Command\VersionCommand;
 
 /*
  * This file is part of the Symfony framework.