Completed
Pull Request — master (#1005)
by Asmir
06:55
created
lib/Doctrine/Migrations/Finder/Finder.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -43,6 +43,7 @@
 block discarded – undo
43 43
 
44 44
     /**
45 45
      * @param string[] $files
46
+     * @param string|null $namespace
46 47
      *
47 48
      * @return string[]
48 49
      *
Please login to merge, or discard this patch.
lib/Doctrine/Migrations/Generator/Generator.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -73,6 +73,10 @@
 block discarded – undo
73 73
         $this->configuration = $configuration;
74 74
     }
75 75
 
76
+    /**
77
+     * @param string $up
78
+     * @param string $down
79
+     */
76 80
     public function generateMigration(
77 81
         string $fqcn,
78 82
         ?string $up = null,
Please login to merge, or discard this patch.
lib/Doctrine/Migrations/Tools/Console/Command/MigrateCommand.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,6 @@
 block discarded – undo
5 5
 namespace Doctrine\Migrations\Tools\Console\Command;
6 6
 
7 7
 use Doctrine\Migrations\Exception\NoMigrationsFoundWithCriteria;
8
-use Doctrine\Migrations\Exception\NoMigrationsToExecute;
9
-use Doctrine\Migrations\Exception\UnknownMigrationVersion;
10 8
 use Doctrine\Migrations\Metadata\ExecutedMigrationsList;
11 9
 use Symfony\Component\Console\Formatter\OutputFormatter;
12 10
 use Symfony\Component\Console\Input\InputArgument;
Please login to merge, or discard this patch.
lib/Doctrine/Migrations/Version/DbalExecutor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@
 block discarded – undo
227 227
     }
228 228
 
229 229
     /**
230
-     * @return mixed[]
230
+     * @return string
231 231
      */
232 232
     private function getMigrationHeader(MigrationPlan $planItem, AbstractMigration $migration, string $direction) : array
233 233
     {
Please login to merge, or discard this patch.