Larabros\Elogram\Repositories\UsersRepository::get PHP Method

get() public method

Get information about a user.
public get ( string $id = 'self' ) : Response
$id string The ID of the user. Default is ``self``
return Larabros\Elogram\Http\Response
    public function get($id = 'self')
    {
        return $this->client->request('GET', "users/{$id}", []);
    }