From efc4777b237cd11ae7158ca7037148de96ff7e2f Mon Sep 17 00:00:00 2001 From: ornicar Date: Tue, 4 May 2010 17:31:43 +0200 Subject: [PATCH] [DoctrineBundle] fixed DoctrineBundle migration namespaces --- .../DoctrineBundle/Command/MigrationsDiffDoctrineCommand.php | 2 +- .../DoctrineBundle/Command/MigrationsExecuteDoctrineCommand.php | 2 +- .../Command/MigrationsGenerateDoctrineCommand.php | 2 +- .../DoctrineBundle/Command/MigrationsMigrateDoctrineCommand.php | 2 +- .../DoctrineBundle/Command/MigrationsStatusDoctrineCommand.php | 2 +- .../DoctrineBundle/Command/MigrationsVersionDoctrineCommand.php | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsDiffDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/MigrationsDiffDoctrineCommand.php index 02f2ba795f..db94aad9a9 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsDiffDoctrineCommand.php +++ b/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. diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsExecuteDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/MigrationsExecuteDoctrineCommand.php index bda238ec97..9b19d260f6 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsExecuteDoctrineCommand.php +++ b/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. diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsGenerateDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/MigrationsGenerateDoctrineCommand.php index 8297426fa6..dee7b0b5c0 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsGenerateDoctrineCommand.php +++ b/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. diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsMigrateDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/MigrationsMigrateDoctrineCommand.php index 6130b68022..471f9cae5b 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsMigrateDoctrineCommand.php +++ b/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. diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsStatusDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/MigrationsStatusDoctrineCommand.php index 1f03daaa47..ab873234cc 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsStatusDoctrineCommand.php +++ b/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. diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsVersionDoctrineCommand.php b/src/Symfony/Framework/DoctrineBundle/Command/MigrationsVersionDoctrineCommand.php index 92c532eeca..a81e2e0769 100644 --- a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsVersionDoctrineCommand.php +++ b/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.