Completed
Pull Request — master (#61)
by
unknown
05:15
created
src/Http/Controllers/SchematicsController.php 1 patch
Unused Use Statements   +5 added lines, -7 removed lines patch added patch discarded remove patch
@@ -2,18 +2,16 @@
 block discarded – undo
2 2
 
3 3
 namespace Mtolhuys\LaravelSchematics\Http\Controllers;
4 4
 
5
-use Mtolhuys\LaravelSchematics\Models\Migration;
6
-use Mtolhuys\LaravelSchematics\Services\RelationMapper;
7
-use Mtolhuys\LaravelSchematics\Services\ModelMapper;
8 5
 use Illuminate\Contracts\Routing\ResponseFactory;
9
-use Symfony\Component\HttpFoundation\Response;
10 6
 use Illuminate\Contracts\View\Factory;
11
-use Illuminate\Support\Facades\Schema;
12
-use Illuminate\Support\Facades\Cache;
13 7
 use Illuminate\Routing\Controller;
14
-use Illuminate\Support\Facades\DB;
8
+use Illuminate\Support\Facades\Cache;
15 9
 use Illuminate\View\View;
10
+use Mtolhuys\LaravelSchematics\Models\Migration;
11
+use Mtolhuys\LaravelSchematics\Services\ModelMapper;
12
+use Mtolhuys\LaravelSchematics\Services\RelationMapper;
16 13
 use ReflectionException;
14
+use Symfony\Component\HttpFoundation\Response;
17 15
 
18 16
 class SchematicsController extends Controller
19 17
 {
Please login to merge, or discard this patch.
src/Actions/Migration/DeleteMigrationAction.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Mtolhuys\LaravelSchematics\Actions\Migration;
4 4
 
5
-use Illuminate\Support\Str;
6 5
 use Illuminate\Support\Facades\File;
7
-use Mtolhuys\LaravelSchematics\Http\Requests\DeleteRelationRequest;
6
+use Illuminate\Support\Str;
8 7
 use Mtolhuys\LaravelSchematics\Actions\Migration\Traits\DeletesMigrations;
8
+use Mtolhuys\LaravelSchematics\Http\Requests\DeleteRelationRequest;
9 9
 
10 10
 class DeleteMigrationAction
11 11
 {
Please login to merge, or discard this patch.