Completed
Pull Request — develop (#34)
by
unknown
08:36
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 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/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/Services/SettingsManager.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/QueryTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      *
42 42
      * @param string $term
43 43
      *
44
-     * @return Eloquent\Collection|static[]
44
+     * @return Eloquent\Collection
45 45
      */
46 46
     public function searchTags($term)
47 47
     {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     /**
106 106
      * Returns collection of tags in status group
107 107
      *
108
-     * @return Eloquent\Collection
108
+     * @return QueryTrait
109 109
      */
110 110
     public function getStatusTags()
111 111
     {
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.