Completed
Push — master ( 195b94...858be2 )
by Mohamed
07:34
created
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/Model/Tag.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
      *
82 82
      * @param string $url
83 83
      *
84
-     * @return mixed
84
+     * @return string
85 85
      */
86 86
     public function to($url)
87 87
     {
Please login to merge, or discard this patch.
app/Model/Traits/Project/QueryTrait.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use Tinyissue\Model\Project as ProjectModel;
15 15
 use Tinyissue\Model\Tag as TagModel;
16
-use Tinyissue\Model\Tag;
17 16
 
18 17
 /**
19 18
  * Project is a class to defines fields & rules for add/edit project form
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.