Browse Source

fixed php doc

develop
Robin Thoni 9 years ago
parent
commit
2a538b56c8
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/Auth/Controller/LuUsersController.php

+ 3
- 3
src/Auth/Controller/LuUsersController.php View File

88
     /**
88
     /**
89
      * Delete a user by its id
89
      * Delete a user by its id
90
      * @param $userId int The user id
90
      * @param $userId int The user id
91
-     * @return LuUsersDbo
91
+     * @return LuUsersLiteDbo
92
      */
92
      */
93
     public function del(int $userId)
93
     public function del(int $userId)
94
     {
94
     {
99
      * Edit a user by its id
99
      * Edit a user by its id
100
      * @param int $userId The user id
100
      * @param int $userId The user id
101
      * @param LuUsersEditDbo $user The edited user
101
      * @param LuUsersEditDbo $user The edited user
102
-     * @return LuUsersDbo
102
+     * @return LuUsersLiteDbo
103
      */
103
      */
104
     public function edit(int $userId, LuUsersEditDbo $user)
104
     public function edit(int $userId, LuUsersEditDbo $user)
105
     {
105
     {
110
      * Edit the logged user
110
      * Edit the logged user
111
      * @param LuUsersDbo $_user The logged user
111
      * @param LuUsersDbo $_user The logged user
112
      * @param LuUsersEditDbo $user The edited user
112
      * @param LuUsersEditDbo $user The edited user
113
-     * @return LuUsersDbo
113
+     * @return LuUsersLiteDbo
114
      */
114
      */
115
     public function editMe(LuUsersDbo $_user, LuUsersEditDbo $user)
115
     public function editMe(LuUsersDbo $_user, LuUsersEditDbo $user)
116
     {
116
     {

Loading…
Cancel
Save