Completed
Push — master ( 64265e...fa5230 )
by Mohamed
06:30
created
app/Http/Controllers/UserController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Tinyissue\Form\UserSetting as Form;
15 15
 use Tinyissue\Http\Requests\FormRequest;
16 16
 use Tinyissue\Model\Project;
17
-use Tinyissue\Model\User;
18 17
 
19 18
 /**
20 19
  * UserController is the controller class for managing request related to logged in user account
Please login to merge, or discard this patch.
app/Http/Controllers/HomeController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Tinyissue\Http\Controllers;
13 13
 
14
-use Auth as Auth;
15
-use Lang;
16 14
 use Tinyissue\Form\Login as LoginForm;
17 15
 use Tinyissue\Http\Requests\FormRequest;
18 16
 use Tinyissue\Model\Project;
Please login to merge, or discard this patch.
app/Form/Project.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Tinyissue\Form;
13 13
 
14 14
 use Tinyissue\Model\Project as ProjectModel;
15
-use Tinyissue\Model\Tag as TagModel;
16 15
 use Tinyissue\Model\Tag;
17 16
 
18 17
 /**
Please login to merge, or discard this patch.
app/Http/Controllers/Administration/TagsController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Tinyissue\Http\Controllers\Administration;
13 13
 
14
-use Illuminate\Http\Request;
15 14
 use Tinyissue\Form\Tag as Form;
16 15
 use Tinyissue\Http\Controllers\Controller;
17 16
 use Tinyissue\Http\Requests\FormRequest;
Please login to merge, or discard this patch.
app/Model/Traits/Tag/CrudTrait.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Tinyissue\Model\Traits\Tag;
13 13
 
14 14
 use Illuminate\Database\Eloquent;
15
-use Tinyissue\Model\Project;
16 15
 use Tinyissue\Model\Tag;
17 16
 
18 17
 /**
Please login to merge, or discard this patch.
app/Model/Traits/Tag/QueryTrait.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use Illuminate\Database\Eloquent;
15 15
 use Illuminate\Database\Query;
16
-use Tinyissue\Model\Role;
17
-use Tinyissue\Model\Tag as TagModel;
18 16
 
19 17
 /**
20 18
  * QueryTrait is trait class containing the database queries methods for the Tag model.
Please login to merge, or discard this patch.
app/Form/FilterIssue.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Tinyissue\Form;
13 13
 
14
-use Request;
15 14
 use Tinyissue\Model;
16 15
 
17 16
 /**
Please login to merge, or discard this patch.
app/Model/Traits/Project/Issue/CrudTrait.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
 use Tinyissue\Model\Project;
19 19
 use Tinyissue\Model\Project\Issue\Attachment;
20 20
 use Tinyissue\Model\User;
21
-use Tinyissue\Services\SettingsManager;
22 21
 
23 22
 /**
24 23
  * CrudTrait is trait class containing the methods for adding/editing/deleting the Project\Issue model.
Please login to merge, or discard this patch.