Completed
Push — develop ( 9582e3...1d63d8 )
by Mohamed
06:40
created
app/Model/Traits/Project/Issue/CrudTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     /**
68 68
      * Reassign the issue to a new user
69 69
      *
70
-     * @param int|User $assignTo
70
+     * @param integer $assignTo
71 71
      * @param int|User $user
72 72
      *
73 73
      * @return Eloquent\Model
Please login to merge, or discard this patch.
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/Console/Commands/Install.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     /**
59 59
      * Returns a setting value
60 60
      *
61
-     * @param $name
61
+     * @param string $name
62 62
      * @param mixed|null $default
63 63
      * @return mixed
64 64
      */
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 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      * 
107 107
      * @param Tag $tag
108 108
      *
109
-     * @return mixed
109
+     * @return \Illuminate\Http\RedirectResponse
110 110
      */
111 111
     public function getDelete(Tag $tag)
112 112
     {
Please login to merge, or discard this 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.