Completed
Push — master ( 8c1b4a...207227 )
by Renato
17:33 queued 12:31
created
app/Observers/ProductBacklogObserver.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,9 +7,9 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Observers;
9 9
 
10
-use GitScrum\Models\ProductBacklog;
11
-use GitScrum\Classes\Helper;
12 10
 use Auth;
11
+use GitScrum\Classes\Helper;
12
+use GitScrum\Models\ProductBacklog;
13 13
 
14 14
 class ProductBacklogObserver
15 15
 {
Please login to merge, or discard this patch.
app/Observers/SprintObserver.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,10 +7,10 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Observers;
9 9
 
10
-use GitScrum\Models\Sprint;
11
-use GitScrum\Models\ConfigStatus;
12
-use GitScrum\Classes\Helper;
13 10
 use Auth;
11
+use GitScrum\Classes\Helper;
12
+use GitScrum\Models\ConfigStatus;
13
+use GitScrum\Models\Sprint;
14 14
 
15 15
 class SprintObserver
16 16
 {
Please login to merge, or discard this patch.
app/Observers/StatusObserver.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\Observers;
9 9
 
10
-use GitScrum\Models\Status;
11 10
 use Auth;
11
+use GitScrum\Models\Status;
12 12
 
13 13
 class StatusObserver
14 14
 {
Please login to merge, or discard this patch.
app/Observers/UserStoryObserver.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,9 +7,9 @@
 block discarded – undo
7 7
  */
8 8
 namespace GitScrum\Observers;
9 9
 
10
-use GitScrum\Models\UserStory;
11
-use GitScrum\Classes\Helper;
12 10
 use Auth;
11
+use GitScrum\Classes\Helper;
12
+use GitScrum\Models\UserStory;
13 13
 
14 14
 class UserStoryObserver
15 15
 {
Please login to merge, or discard this patch.
app/Http/Controllers/CommentController.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/FavoriteController.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\Observers;
9 9
 
10
-use GitScrum\Models\Favorite;
11 10
 use Auth;
11
+use GitScrum\Models\Favorite;
12 12
 
13 13
 class FavoriteObserver
14 14
 {
Please login to merge, or discard this patch.
app/Http/Controllers/LabelController.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/ProductBacklogController.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/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\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.