Completed
Push — master ( 0b2558...a05bd7 )
by Bernhard
01:16
created
src/Xethron/MigrationsGenerator/MigrateGenerateCommand.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
 	 * @param \Way\Generators\Filesystem\Filesystem  $file
111 111
 	 * @param \Way\Generators\Compilers\TemplateCompiler  $compiler
112 112
 	 * @param \Illuminate\Database\Migrations\MigrationRepositoryInterface  $repository
113
-	 * @param \Illuminate\Config\Repository  $config
113
+	 * @param Config  $config
114 114
 	 */
115 115
 	public function __construct(
116 116
 		Generator $generator,
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,18 +3,15 @@
 block discarded – undo
3 3
 use Way\Generators\Commands\GeneratorCommand;
4 4
 use Symfony\Component\Console\Input\InputOption;
5 5
 use Symfony\Component\Console\Input\InputArgument;
6
-
7 6
 use Way\Generators\Generator;
8 7
 use Way\Generators\Filesystem\Filesystem;
9 8
 use Way\Generators\Compilers\TemplateCompiler;
10 9
 use Illuminate\Database\Migrations\MigrationRepositoryInterface;
11
-
12 10
 use Xethron\MigrationsGenerator\Generators\SchemaGenerator;
13 11
 use Xethron\MigrationsGenerator\Syntax\AddToTable;
14 12
 use Xethron\MigrationsGenerator\Syntax\DroppedTable;
15 13
 use Xethron\MigrationsGenerator\Syntax\AddForeignKeysToTable;
16 14
 use Xethron\MigrationsGenerator\Syntax\RemoveForeignKeysFromTable;
17
-
18 15
 use Illuminate\Contracts\Config\Repository as Config;
19 16
 
20 17
 class MigrateGenerateCommand extends GeneratorCommand {
Please login to merge, or discard this patch.