Test Setup Failed
Pull Request — master (#232)
by
unknown
05:27
created
app/Services/Action/CommentCreation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     /**
50 50
      * Get the required parameter for the event.
51 51
      *
52
-     * @return array
52
+     * @return string[]
53 53
      */
54 54
     public function getEventRequiredParameters()
55 55
     {
Please login to merge, or discard this patch.
app/Services/Analytic/AverageLeadCycleTimeAnalytic.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      * @param array  &$stats
57 57
      * @param string $field
58 58
      *
59
-     * @return float
59
+     * @return integer
60 60
      */
61 61
     private function calculateAverage(array &$stats, $field)
62 62
     {
Please login to merge, or discard this patch.
app/Console/PluginUpgradeCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     /**
39 39
      * Execute the console command.
40 40
      *
41
-     * @param InputInterface  $output
41
+     * @param OutputInterface  $output
42 42
      * @param OutputInterface $output
43 43
      *
44 44
      * @return void
Please login to merge, or discard this patch.
app/Console/ResetTwoFactorCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@
 block discarded – undo
36 36
     /**
37 37
      * Execute the console command.
38 38
      *
39
-     * @param InputInterface  $output
39
+     * @param OutputInterface  $output
40 40
      * @param OutputInterface $output
41 41
      *
42
-     * @return void
42
+     * @return integer|null
43 43
      */
44 44
     protected function execute(InputInterface $input, OutputInterface $output)
45 45
     {
Please login to merge, or discard this patch.
app/Helpers/TaskHelper.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,8 +100,7 @@
 block discarded – undo
100 100
     /**
101 101
      * Display a select field of tags.
102 102
      *
103
-     * @param array $values Form values
104
-     * @param array $targs  Form tags
103
+     * @param array $tags  Form tags
105 104
      *
106 105
      * @return string
107 106
      */
Please login to merge, or discard this patch.
app/Helpers/AppHelper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     /**
167 167
      * Get default view of project.
168 168
      *
169
-     * @return array
169
+     * @return string[]
170 170
      */
171 171
     public function getProjectDefaultView($slug = '', $forController = false)
172 172
     {
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     /**
200 200
      * Get current dashboard.
201 201
      *
202
-     * @return array
202
+     * @return string[]
203 203
      */
204 204
     public function getDashboard($forController = false)
205 205
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Api/ActionController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,6 @@
 block discarded – undo
42 42
     /**
43 43
      * Get list of compatible events for a given action.
44 44
      *
45
-     * @param string $name
46 45
      *
47 46
      * @return array
48 47
      */
Please login to merge, or discard this patch.
app/Http/Controllers/Api/ProjectFileController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      * @param int $project_id
55 55
      * @param int $file_id
56 56
      *
57
-     * @return array
57
+     * @return string
58 58
      */
59 59
     public function downloadProjectFile($project_id, $file_id)
60 60
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Api/ProjectPermissionController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      * Get list of users that can be assigned to a task (only Manager and Member).
38 38
      *
39 39
      * @param int  $project_id Project id
40
-     * @param bool $unassigned Prepend the 'Unassigned' value
40
+     * @param bool $prepend_unassigned Prepend the 'Unassigned' value
41 41
      *
42 42
      * @return array
43 43
      */
Please login to merge, or discard this patch.