Completed
Push — master ( 64265e...fa5230 )
by Mohamed
06:30
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/Model/Traits/Tag/QueryTrait.php 1 patch
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.
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/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/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/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/Http/Controllers/Administration/TagsController.php 1 patch
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.
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.