diff options
author | Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr> | 2014-04-22 15:08:18 +0200 |
---|---|---|
committer | Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr> | 2014-04-22 15:08:18 +0200 |
commit | d156c47f0951cf681d16ed047f322e8332eb485e (patch) | |
tree | 1b97d1cb437fd7b2c0262640b7a70026e054413f /actions | |
parent | 919e5d51a4cc4a2928cd34c8c575d4c003bb9a74 (diff) |
Better documentation
These changes have been automatically suggested by scrutinizer-ci.com
Diffstat (limited to 'actions')
-rw-r--r-- | actions/task_assign_color_user.php | 4 | ||||
-rw-r--r-- | actions/task_assign_current_user.php | 6 | ||||
-rw-r--r-- | actions/task_assign_specific_user.php | 4 | ||||
-rw-r--r-- | actions/task_close.php | 4 | ||||
-rw-r--r-- | actions/task_duplicate_another_project.php | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/actions/task_assign_color_user.php b/actions/task_assign_color_user.php index 66002b80..cd8bee44 100644 --- a/actions/task_assign_color_user.php +++ b/actions/task_assign_color_user.php @@ -17,7 +17,7 @@ class TaskAssignColorUser extends Base * * @access public * @param integer $project_id Project id - * @param Task $task Task model instance + * @param \Model\Task $task Task model instance */ public function __construct($project_id, \Model\Task $task) { @@ -44,7 +44,7 @@ class TaskAssignColorUser extends Base * Get the required parameter for the event * * @access public - * @return array + * @return string[] */ public function getEventRequiredParameters() { diff --git a/actions/task_assign_current_user.php b/actions/task_assign_current_user.php index 35b8f89a..c3843d85 100644 --- a/actions/task_assign_current_user.php +++ b/actions/task_assign_current_user.php @@ -17,8 +17,8 @@ class TaskAssignCurrentUser extends Base * * @access public * @param integer $project_id Project id - * @param Task $task Task model instance - * @param Acl $acl Acl model instance + * @param \Model\Task $task Task model instance + * @param \Model\Acl $acl Acl model instance */ public function __construct($project_id, \Model\Task $task, \Model\Acl $acl) { @@ -44,7 +44,7 @@ class TaskAssignCurrentUser extends Base * Get the required parameter for the event * * @access public - * @return array + * @return string[] */ public function getEventRequiredParameters() { diff --git a/actions/task_assign_specific_user.php b/actions/task_assign_specific_user.php index edde560e..0d5b1b51 100644 --- a/actions/task_assign_specific_user.php +++ b/actions/task_assign_specific_user.php @@ -17,7 +17,7 @@ class TaskAssignSpecificUser extends Base * * @access public * @param integer $project_id Project id - * @param Task $task Task model instance + * @param \Model\Task $task Task model instance */ public function __construct($project_id, \Model\Task $task) { @@ -43,7 +43,7 @@ class TaskAssignSpecificUser extends Base * Get the required parameter for the event * * @access public - * @return array + * @return string[] */ public function getEventRequiredParameters() { diff --git a/actions/task_close.php b/actions/task_close.php index 3c45ebc0..8a6c8999 100644 --- a/actions/task_close.php +++ b/actions/task_close.php @@ -17,7 +17,7 @@ class TaskClose extends Base * * @access public * @param integer $project_id Project id - * @param Task $task Task model instance + * @param \Model\Task $task Task model instance */ public function __construct($project_id, \Model\Task $task) { @@ -42,7 +42,7 @@ class TaskClose extends Base * Get the required parameter for the event * * @access public - * @return array + * @return string[] */ public function getEventRequiredParameters() { diff --git a/actions/task_duplicate_another_project.php b/actions/task_duplicate_another_project.php index e898f757..614e2dda 100644 --- a/actions/task_duplicate_another_project.php +++ b/actions/task_duplicate_another_project.php @@ -17,7 +17,7 @@ class TaskDuplicateAnotherProject extends Base * * @access public * @param integer $project_id Project id - * @param Task $task Task model instance + * @param \Model\Task $task Task model instance */ public function __construct($project_id, \Model\Task $task) { @@ -43,7 +43,7 @@ class TaskDuplicateAnotherProject extends Base * Get the required parameter for the event * * @access public - * @return array + * @return string[] */ public function getEventRequiredParameters() { |