Completed
Push — master ( 91f8d9...64265e )
by Mohamed
09:45 queued 06:57
created
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/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/Services/SettingsManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     /**
58 58
      * Returns a setting value.
59 59
      *
60
-     * @param $name
60
+     * @param string $name
61 61
      * @param mixed|null $default
62 62
      *
63 63
      * @return mixed
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     /**
99 99
      * Returns first status tag id.
100 100
      *
101
-     * @return int
101
+     * @return string
102 102
      */
103 103
     public function getFirstStatusTagId()
104 104
     {
Please login to merge, or discard this patch.