@@ -19,7 +19,7 @@ |
||
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
22 | - * @param Doctrine\DBAL\Migrations\Configuration\Configuration $configuration |
|
22 | + * @param Configuration $configuration |
|
23 | 23 | * @param \Symfony\Component\Console\Input\InputInterface $input |
24 | 24 | * @param string $version |
25 | 25 | * @param string|null $up |
@@ -2,10 +2,9 @@ |
||
2 | 2 | |
3 | 3 | namespace Rey\BitrixMigrations\Command; |
4 | 4 | |
5 | -use Symfony\Component\Console\Input\InputInterface; |
|
6 | -use Symfony\Component\Console\Output\OutputInterface; |
|
7 | 5 | use Doctrine\DBAL\Migrations\Configuration\Configuration; |
8 | 6 | use Doctrine\DBAL\Migrations\Tools\Console\Command\GenerateCommand; |
7 | +use Symfony\Component\Console\Input\InputInterface; |
|
9 | 8 | |
10 | 9 | class MigrationsGenerateDoctrineCommand extends GenerateCommand |
11 | 10 | { |
@@ -2,13 +2,13 @@ |
||
2 | 2 | |
3 | 3 | namespace Rey\BitrixMigrations; |
4 | 4 | |
5 | +use Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper as DoctrineConnectionHelper; |
|
6 | +use Rey\BitrixMigrations\Command; |
|
5 | 7 | use Rey\BitrixMigrations\Configuration\ConfigurationInterface; |
6 | 8 | use Rey\BitrixMigrations\ConsoleHelper\ConfigurationHelper; |
7 | -use Rey\BitrixMigrations\Command; |
|
8 | 9 | use Symfony\Component\Console\Application; |
9 | -use Symfony\Component\Console\Helper\HelperSet; |
|
10 | 10 | use Symfony\Component\Console\Helper\DialogHelper; |
11 | -use Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper as DoctrineConnectionHelper; |
|
11 | +use Symfony\Component\Console\Helper\HelperSet; |
|
12 | 12 | |
13 | 13 | |
14 | 14 | /** |