Completed
Pull Request — master (#2)
by
unknown
06:25
created
src/Codengine/CustomMigrations/BatchMigrationTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	 * Filters the connections and only returns the ones that match the migration type
33 33
 	 *
34 34
 	 * @param array $connection The database connections
35
-	 * @return bool Returns TRUE on a match, else FALSE
35
+	 * @return boolean|null Returns TRUE on a match, else FALSE
36 36
 	 */
37 37
 	protected function filterConnections($connection)
38 38
 	{
Please login to merge, or discard this patch.
src/Codengine/CustomMigrations/CustomMigrationsServiceProvider.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Codengine\CustomMigrations\Commands\ResetCommand;
6 6
 use Codengine\CustomMigrations\Commands\RollbackCommand;
7 7
 use Illuminate\Database\MigrationServiceProvider;
8
-use Illuminate\Support\ServiceProvider;
9 8
 
10 9
 class CustomMigrationsServiceProvider extends MigrationServiceProvider {
11 10
 	/**
Please login to merge, or discard this patch.
src/Codengine/CustomMigrations/Migrator.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,6 @@
 block discarded – undo
58 58
 	 * Gets a filtered list of migrations and runs them
59 59
 	 *
60 60
 	 * @param array $migrations
61
-	 * @param bool $pretend
62 61
 	 */
63 62
 	public function runMigrationList($migrations, array $options=[])
64 63
 	{
Please login to merge, or discard this patch.