Completed
Push — master ( 91f8d9...64265e )
by Mohamed
09:45 queued 06:57
created
app/Form/FormAbstract.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      *
35 35
      * @param Model $model
36 36
      *
37
-     * @return void|FormInterface
37
+     * @return FormAbstract
38 38
      */
39 39
     public function editingModel(Model $model)
40 40
     {
Please login to merge, or discard this patch.
app/Model/Traits/Project/Issue/CrudTrait.php 2 patches
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.
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.
app/Model/Traits/Tag/QueryTrait.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      *
41 41
      * @param string $term
42 42
      *
43
-     * @return Eloquent\Collection|static[]
43
+     * @return Eloquent\Collection
44 44
      */
45 45
     public function searchTags($term)
46 46
     {
Please login to merge, or discard this 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/Http/Controllers/ProjectController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 
122 122
     /**
123 123
      * @param Project $project
124
-     * @param $view
124
+     * @param string $view
125 125
      * @param null $data
126 126
      * @param bool $status
127 127
      * @return array
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/Model/User.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@
 block discarded – undo
229 229
     /**
230 230
      * Returns list of user statuses
231 231
      *
232
-     * @return array
232
+     * @return string[]
233 233
      */
234 234
     public static function getStatuses()
235 235
     {
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.