Completed
Push — master ( 8c1b4a...207227 )
by Renato
17:33 queued 12:31
created
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/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.
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 Status extends Model
15 15
 {
Please login to merge, or discard this patch.