Merge pull request #12530 from frederic34/patch-13

fix doxygen
This commit is contained in:
Laurent Destailleur 2019-11-27 20:11:24 +01:00 committed by GitHub
commit c0d349e9f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1990,11 +1990,11 @@ function print_projecttasks_array($db, $form, $socid, $projectsListId, $mytasks
} }
/** /**
* @param task $task Task the task object * @param Task $task the task object
* @param label $label bool|string true = auto, false = dont display, string = replace output * @param bool|string $label true = auto, false = dont display, string = replace output
* @param progressNumber $progressNumber bool|string true = auto, false = dont display, string = replace output * @param bool|string $progressNumber true = auto, false = dont display, string = replace output
* @param hideOnProgressNull $hideOnProgressNull bool hide if progress is null * @param bool $hideOnProgressNull hide if progress is null
* @param spaced $spaced bool used to add space at bottom (made by css) * @param bool $spaced used to add space at bottom (made by css)
* @return string * @return string
* @see getTaskProgressBadge() * @see getTaskProgressBadge()
*/ */
@ -2113,10 +2113,10 @@ function getTaskProgressView($task, $label = true, $progressNumber = true, $hide
return $out; return $out;
} }
/** /**
* @param task $task Task the task object * @param Task $task the task object
* @param label $label string empty = auto (progress), string = replace output * @param string $label empty = auto (progress), string = replace output
* @param tooltip $tooltip string empty = auto , string = replace output * @param string $tooltip empty = auto , string = replace output
* @return string * @return string
* @see getTaskProgressView() * @see getTaskProgressView()
*/ */
function getTaskProgressBadge($task, $label = '', $tooltip = '') function getTaskProgressBadge($task, $label = '', $tooltip = '')