Completed
Push — master ( e5e9bc...6188cd )
by Arthur
09:33
created
app/Http/Controllers/Auth/GitHubController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,6 @@
 block discarded – undo
7 7
 use App\User;
8 8
 use GrahamCampbell\GitHub\GitHubManager;
9 9
 use Socialite;
10
-use App\Http\Requests;
11
-use Illuminate\Http\Request;
12 10
 use App\Http\Controllers\Controller;
13 11
 
14 12
 class GitHubController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/HomeController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use App\Http\Requests;
6
-use Illuminate\Http\Request;
7
-
8 5
 class HomeController extends Controller
9 6
 {
10 7
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/PingController.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 \Auth;
6 6
 use App\Ping;
7 7
 use \Validator;
8
-use App\Http\Requests;
9 8
 use Illuminate\Http\Request;
10 9
 use App\Http\Controllers\Controller;
11 10
 
Please login to merge, or discard this patch.
app/Http/Controllers/ContactController.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 \Auth;
6 6
 use App\Ping;
7 7
 use \Validator;
8
-use App\Http\Requests;
9 8
 use Illuminate\Http\Request;
10 9
 use App\Http\Controllers\Controller;
11 10
 
Please login to merge, or discard this patch.
app/Listeners/NotifyPeopleAboutPingFailure.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
 
49 49
             //contact the person
50 50
 
51
-            Mail::queue(['text' => 'emails.ping-error'], ['ping' => $ping], function ($message) use($contact, $ping) {
51
+            Mail::queue(['text' => 'emails.ping-error'], ['ping' => $ping], function($message) use($contact, $ping) {
52 52
                 $message->subject("Nothing heard from ping " . $ping->name);
53 53
                 $message->to($contact->email, $contact->name);
54 54
             });
Please login to merge, or discard this patch.