Completed
Push — master ( 8c1b4a...207227 )
by Renato
17:33 queued 12:31
created
app/Classes/Github.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,13 +3,13 @@
 block discarded – undo
3 3
 namespace GitScrum\Classes;
4 4
 
5 5
 use Auth;
6
-use GitScrum\Repository;
6
+use Carbon\Carbon;
7 7
 use GitScrum\Branch;
8 8
 use GitScrum\Commit;
9
-use GitScrum\Models\User;
10 9
 use GitScrum\Models\Organization;
11 10
 use GitScrum\Models\ProductBacklog;
12
-use Carbon\Carbon;
11
+use GitScrum\Models\User;
12
+use GitScrum\Repository;
13 13
 
14 14
 class Github
15 15
 {
Please login to merge, or discard this patch.
app/Classes/Phpcs.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace GitScrum\Classes;
4 4
 
5
-use Storage;
6 5
 use GitScrum\CommitFile;
7 6
 use GitScrum\CommitFilePhpcs;
7
+use Storage;
8 8
 
9 9
 class Phpcs
10 10
 {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/AuthController.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,13 +7,12 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Http\Controllers\Auth;
9 9
 
10
-use GitScrum\Http\Requests\AuthRequest;
11
-use GitScrum\Models\User;
10
+use Auth;
11
+use Carbon\Carbon;
12 12
 use GitScrum\Classes\UserClass;
13 13
 use GitScrum\Http\Controllers\Controller;
14
-use Carbon\Carbon;
14
+use GitScrum\Http\Requests\AuthRequest;
15 15
 use Socialite;
16
-use Auth;
17 16
 
18 17
 class AuthController extends Controller
19 18
 {
Please login to merge, or discard this patch.
app/Http/Controllers/IssueController.php 1 patch
Unused Use Statements   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -7,17 +7,17 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Http\Controllers;
9 9
 
10
-use Illuminate\Http\Request;
10
+use Auth;
11
+use Carbon\Carbon;
11 12
 use GitScrum\Http\Requests\IssueRequest;
12
-use GitScrum\Models\Sprint;
13
-use GitScrum\Models\UserStory;
14
-use GitScrum\Models\Issue;
13
+use GitScrum\Models\ConfigIssueEffort;
15 14
 use GitScrum\Models\ConfigStatus;
16
-use GitScrum\Models\Organization;
15
+use GitScrum\Models\Issue;
17 16
 use GitScrum\Models\IssueType;
18
-use GitScrum\Models\ConfigIssueEffort;
19
-use Carbon\Carbon;
20
-use Auth;
17
+use GitScrum\Models\Organization;
18
+use GitScrum\Models\Sprint;
19
+use GitScrum\Models\UserStory;
20
+use Illuminate\Http\Request;
21 21
 
22 22
 class IssueController extends Controller
23 23
 {
Please login to merge, or discard this patch.
app/Http/Controllers/NoteController.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Http\Controllers;
9 9
 
10
-use Illuminate\Http\Request;
10
+use Auth;
11
+use Carbon\Carbon;
11 12
 use GitScrum\Http\Requests\NoteRequest;
12 13
 use GitScrum\Models\Note;
13
-use Carbon\Carbon;
14
-use Auth;
14
+use Illuminate\Http\Request;
15 15
 
16 16
 class NoteController extends Controller
17 17
 {
Please login to merge, or discard this patch.
app/Http/Controllers/SprintController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,10 +7,10 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Http\Controllers;
9 9
 
10
+use Auth;
10 11
 use GitScrum\Http\Requests\SprintRequest;
11 12
 use GitScrum\Models\ProductBacklog;
12 13
 use GitScrum\Models\Sprint;
13
-use Auth;
14 14
 use Illuminate\Http\Request;
15 15
 
16 16
 class SprintController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/UserController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,10 +7,10 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Http\Controllers;
9 9
 
10
-use Illuminate\Http\Request;
10
+use Auth;
11 11
 use GitScrum\Classes\Github;
12 12
 use GitScrum\Models\User;
13
-use Auth;
13
+use Illuminate\Http\Request;
14 14
 
15 15
 class UserController extends Controller
16 16
 {
Please login to merge, or discard this patch.
app/Http/Controllers/UserIssueController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,9 +7,9 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Http\Controllers;
9 9
 
10
-use Illuminate\Http\Request;
11 10
 use GitScrum\Models\Issue;
12 11
 use GitScrum\Models\User;
12
+use Illuminate\Http\Request;
13 13
 
14 14
 class UserIssueController extends Controller
15 15
 {
Please login to merge, or discard this patch.
app/Http/Controllers/UserStoryController.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Http\Controllers;
9 9
 
10
-use Illuminate\Http\Request;
11
-use GitScrum\Models\UserStory;
10
+use Auth;
12 11
 use GitScrum\Models\ConfigPriority;
13 12
 use GitScrum\Models\ProductBacklog;
14
-use Auth;
13
+use GitScrum\Models\UserStory;
14
+use Illuminate\Http\Request;
15 15
 
16 16
 class UserStoryController extends Controller
17 17
 {
Please login to merge, or discard this patch.