Completed
Pull Request — master (#107)
by Tim
13:32 queued 10:23
created
app/Http/Controllers/SickController.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,8 +72,8 @@
 block discarded – undo
72 72
             \Mail::send('emails.new_sick', ['data' => $data], function ($m) use ($mailbox, $subject) {
73 73
                 $m->from($mailbox);
74 74
                 /** Send confirmation mail to all managers in the department from the user.
75
-                *$m->to("")->subject("$subject");
76
-                */
75
+                 *$m->to("")->subject("$subject");
76
+                 */
77 77
             });
78 78
 
79 79
             return redirect('sick');
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-use App\Http\Requests;
7 6
 use App\Http\Controllers\Controller;
8 7
 use App\User;
9 8
 use App\Teams;
Please login to merge, or discard this patch.
app/Http/Controllers/BreakController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-
7
-use App\Http\Requests;
8 6
 use App\Http\Controllers\Controller;
9 7
 
10 8
 class SettingsController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/TypesController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use App\Tasks;
6 6
 use Illuminate\Http\Request;
7
-
8 7
 use App\Http\Requests;
9 8
 use App\Http\Controllers\Controller;
10 9
 
Please login to merge, or discard this patch.
app/Http/Controllers/TeamsController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,12 +3,9 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-use App\Http\Requests;
7
-
8 6
 use App\Departments;
9 7
 use App\Teams;
10 8
 use App\User;
11
-
12 9
 use App\Http\Controllers\Controller;
13 10
 
14 11
 class TeamsController extends Controller
Please login to merge, or discard this patch.
app/Widgets/RecentOvertime.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function __construct()
10 10
     {
11
-       $this->reloadTimeout = config('timecontrol.refreshInterval');
11
+        $this->reloadTimeout = config('timecontrol.refreshInterval');
12 12
     }
13 13
 
14 14
     /**
Please login to merge, or discard this patch.
app/Widgets/RecentTasks.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function __construct()
10 10
     {
11
-       $this->reloadTimeout = config('timecontrol.refreshInterval');
11
+        $this->reloadTimeout = config('timecontrol.refreshInterval');
12 12
     }
13 13
 
14 14
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/TaskController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use App\Tasks;
6 6
 use Illuminate\Http\Request;
7
-
8 7
 use App\Http\Requests;
9 8
 use App\Http\Controllers\Controller;
10 9
 
Please login to merge, or discard this patch.
app/Http/Controllers/SettingsController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6
-
7 5
 use App\Http\Requests;
8 6
 use App\Http\Controllers\Controller;
9 7
 
Please login to merge, or discard this patch.
app/Http/Controllers/HolidaysController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6
-
7 5
 use App\Http\Requests;
8 6
 use App\Http\Controllers\Controller;
9 7
 
Please login to merge, or discard this patch.