Twitter::loadUserInfoById PHP Method

loadUserInfoById() public method

Returns information of a given user by id.
public loadUserInfoById ( $id ) : stdClass
return stdClass see https://dev.twitter.com/rest/reference/get/users/show
    public function loadUserInfoById($id)
    {
        return $this->cachedRequest('users/show', ['user_id' => $id]);
    }