Completed
Push — develop ( 58742c...7889c1 )
by Mohamed
03:32
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/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/Model/Project/Issue/SendMessages.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\Project\Issue;
13 13
 
14 14
 use Illuminate\Database\Eloquent\Collection;
15
-use Tinyissue\Model\Message;
16 15
 use Tinyissue\Model\Message\Queue;
17 16
 use Tinyissue\Model\Project;
18 17
 use Tinyissue\Model\Project\Issue;
Please login to merge, or discard this patch.
app/Model/Project/Note/SendMessages.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,10 +12,8 @@
 block discarded – undo
12 12
 namespace Tinyissue\Model\Project\Note;
13 13
 
14 14
 use Tinyissue\Model\Project;
15
-use Tinyissue\Model\Project\Issue;
16 15
 use Tinyissue\Model\Message\Queue;
17 16
 use Illuminate\Support\Collection;
18
-use Tinyissue\Model\User;
19 17
 use Tinyissue\Services\SendMessagesAbstract;
20 18
 
21 19
 /**
Please login to merge, or discard this patch.
app/Model/Tag.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      *
97 97
      * @param string $url
98 98
      *
99
-     * @return mixed
99
+     * @return string
100 100
      */
101 101
     public function to($url)
102 102
     {
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     /**
143 143
      * Returns an array of core groups.
144 144
      *
145
-     * @return array
145
+     * @return string[]
146 146
      */
147 147
     public static function getCoreGroups()
148 148
     {
Please login to merge, or discard this patch.
app/Model/Traits/Message/Queue/CrudTrait.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\Model\Traits\Message\Queue;
13 13
 
14
-use Illuminate\Database\Eloquent;
15 14
 use Illuminate\Database\Eloquent\Model;
16 15
 use Tinyissue\Model\Message;
17 16
 use Tinyissue\Model\Project\Issue;
Please login to merge, or discard this patch.