Completed
Push — issue-49-example ( a47af4 )
by Doug
03:01
created
TESTPACKER/app/Http/Controllers/Auth/AuthController.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers\Auth;
4 4
 
5
-use App\User;
6
-use Validator;
7 5
 use App\Http\Controllers\Controller;
8
-use Illuminate\Foundation\Auth\ThrottlesLogins;
6
+use App\User;
9 7
 use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
8
+use Illuminate\Foundation\Auth\ThrottlesLogins;
9
+use Validator;
10 10
 
11 11
 class AuthController extends Controller
12 12
 {
Please login to merge, or discard this patch.
TESTPACKER/tests/ExampleTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,6 +14,6 @@
 block discarded – undo
14 14
     public function testBasicExample()
15 15
     {
16 16
         $this->visit('/')
17
-             ->see('Laravel 5');
17
+                ->see('Laravel 5');
18 18
     }
19 19
 }
Please login to merge, or discard this patch.