Commit 148fccb6 148fccb6b061b9dd0408ac3eea0987831d25e39e by lemon

*

1 parent aef9a9d5
...@@ -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
......