Completed
Push — master ( 15cc7a...b6530c )
by Oleg
02:06
created
src/Command/MigrationsGenerateDoctrineCommand.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,9 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
src/MigrationManager.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
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
 /**
Please login to merge, or discard this patch.