*
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -20,7 +20,7 @@ class MusicianUserService extends Service | ... | @@ -20,7 +20,7 @@ class MusicianUserService extends Service |
20 | */ | 20 | */ |
21 | public function userInfo() | 21 | public function userInfo() |
22 | { | 22 | { |
23 | $user_ids = array_map(function ($k, $v) {return intval($v);},$this->request->input('user_ids', [])); | 23 | $user_ids = array_map(function ($v) {return intval($v);}, $this->request->input('user_ids',[])); |
24 | 24 | ||
25 | if (empty($user_ids)) return Response::success(); | 25 | if (empty($user_ids)) return Response::success(); |
26 | 26 | ... | ... |
-
Please register or sign in to post a comment