Larabros\Elogram\Repositories\CommentsRepository::delete PHP Method

delete() public method

Remove a comment either on the owner of the access token's media object or authored by the owner of the access token.
public delete ( integer $mediaId, string $commentId ) : Response
$mediaId integer The ID of the media object
$commentId string The ID of the comment
return Larabros\Elogram\Http\Response
    public function delete($mediaId, $commentId)
    {
        return $this->client->request('DELETE', "media/{$mediaId}/comments/{$commentId}");
    }
CommentsRepository