Completed
Branch master (119d8b)
by Chris
11:22
created
src/Commands/GenerateToken.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Yab\FlightDeck\Commands;
4 4
 
5
-use Yab\FlightDeck\FlightDeck;
6 5
 use Illuminate\Console\Command;
6
+use Yab\FlightDeck\FlightDeck;
7 7
 
8 8
 class GenerateToken extends Command
9 9
 {
Please login to merge, or discard this patch.
src/database/factories/UserFactory.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Yab\FlightDeck\Models\User;
4 3
 use Faker\Generator as Faker;
4
+use Yab\FlightDeck\Models\User;
5 5
 
6 6
 $factory->define(User::class, function (Faker $faker) {
7 7
     return [
Please login to merge, or discard this patch.
src/Http/Controllers/AuthController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Yab\FlightDeck\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6 5
 use Illuminate\Routing\Controller;
7
-use Illuminate\Support\Facades\Auth;
8 6
 use Yab\FlightDeck\Http\Requests\LoginRequest;
9 7
 
10 8
 class AuthController extends Controller
Please login to merge, or discard this patch.