Completed
Push — master ( e7dd5d...f635d3 )
by Renato
05:30
created
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.
app/Http/Middleware/SprintExpired.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\Middleware;
9 9
 
10
+use Carbon\Carbon;
10 11
 use Closure;
11 12
 use GitScrum\Models\Sprint;
12
-use Carbon\Carbon;
13 13
 
14 14
 class SprintExpired
15 15
 {
Please login to merge, or discard this patch.
app/Http/Requests/IssueRequest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Http\Requests;
9 9
 
10
-use Illuminate\Foundation\Http\FormRequest;
11 10
 use GitScrum\Models\Sprint;
11
+use Illuminate\Foundation\Http\FormRequest;
12 12
 
13 13
 class IssueRequest extends FormRequest
14 14
 {
Please login to merge, or discard this patch.
app/Models/Commit.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Models;
9 9
 
10
-use Illuminate\Database\Eloquent\Model;
11 10
 use Carbon\Carbon;
11
+use Illuminate\Database\Eloquent\Model;
12 12
 
13 13
 class Commit extends Model
14 14
 {
Please login to merge, or discard this patch.
app/Models/Issue.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\Models;
9 9
 
10
+use Carbon\Carbon;
10 11
 use Illuminate\Database\Eloquent\Model;
11 12
 use Illuminate\Database\Eloquent\SoftDeletes;
12
-use Carbon\Carbon;
13 13
 
14 14
 class Issue extends Model
15 15
 {
Please login to merge, or discard this patch.
app/Models/Sprint.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\Models;
9 9
 
10
-use Illuminate\Database\Eloquent\Model;
11
-use Illuminate\Database\Eloquent\SoftDeletes;
12 10
 use Carbon\Carbon;
13 11
 use GitScrum\Classes\Helper;
12
+use Illuminate\Database\Eloquent\Model;
13
+use Illuminate\Database\Eloquent\SoftDeletes;
14 14
 
15 15
 class Sprint extends Model
16 16
 {
Please login to merge, or discard this patch.
app/Models/Status.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\Models;
9 9
 
10
+use Carbon\Carbon;
10 11
 use Illuminate\Database\Eloquent\Model;
11 12
 use Illuminate\Database\Eloquent\SoftDeletes;
12
-use Carbon\Carbon;
13 13
 
14 14
 class Status extends Model
15 15
 {
Please login to merge, or discard this patch.