Completed
Push — master ( 37a2ca...e45344 )
by Maarten
01:19
created
src/Http/Controllers/SchematicsController.php 1 patch
Unused Use Statements   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,18 +2,18 @@
 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;
8
+use Illuminate\Support\Facades\Cache;
14 9
 use Illuminate\Support\Facades\DB;
10
+use Illuminate\Support\Facades\Schema;
15 11
 use Illuminate\View\View;
12
+use Mtolhuys\LaravelSchematics\Models\Migration;
13
+use Mtolhuys\LaravelSchematics\Services\ModelMapper;
14
+use Mtolhuys\LaravelSchematics\Services\RelationMapper;
16 15
 use ReflectionException;
16
+use Symfony\Component\HttpFoundation\Response;
17 17
 
18 18
 class SchematicsController extends Controller
19 19
 {
Please login to merge, or discard this patch.
src/Services/RelationMapper.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Database\Eloquent\Relations\Relation;
6 6
 
7
-use ReflectionException;
8 7
 use ReflectionClass;
8
+use ReflectionException;
9 9
 use ReflectionMethod;
10 10
 
11 11
 class RelationMapper extends ClassReader
Please login to merge, or discard this patch.