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

getRelationship() public method

Get information about the relationship of the owner of the access token to another user.
public getRelationship ( string $targetUserId ) : Response
$targetUserId string The ID of the target user
return Larabros\Elogram\Http\Response
    public function getRelationship($targetUserId)
    {
        return $this->client->request('GET', "users/{$targetUserId}/relationship");
    }