diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-05-03 22:44:00 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-05-03 22:44:00 -0400 |
commit | 8ab4c38373932a3f40c4810cf88c278a2f478976 (patch) | |
tree | af36edb9f5f4539c9b56ff3881364ea3f2ac5fbc /actions/task_assign_current_user.php | |
parent | 560a12f0bd6347a335f8ed5201d6d9562d03d4bc (diff) |
Remove some warnings for Scrutinizer-ci
Diffstat (limited to 'actions/task_assign_current_user.php')
-rw-r--r-- | actions/task_assign_current_user.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/actions/task_assign_current_user.php b/actions/task_assign_current_user.php index c3843d85..a3d9559e 100644 --- a/actions/task_assign_current_user.php +++ b/actions/task_assign_current_user.php @@ -13,6 +13,22 @@ require_once __DIR__.'/base.php'; class TaskAssignCurrentUser extends Base { /** + * Task model + * + * @accesss private + * @var \Model\Task + */ + private $task; + + /** + * Acl model + * + * @accesss private + * @var \Model\Acl + */ + private $acl; + + /** * Constructor * * @access public |