Larabros\Elogram\Repositories\LikesRepository::like PHP Method

like() public method

Set a like on a media object by the currently authenticated user.
public like ( integer $mediaId ) : Response
$mediaId integer The ID of the media object
return Larabros\Elogram\Http\Response
    public function like($mediaId)
    {
        return $this->client->request('POST', "media/{$mediaId}/likes");
    }
LikesRepository