eventfarm/marketo-client

View on GitHub
src/RestClient/RestClientInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace EventFarm\Marketo\RestClient;

use Psr\Http\Message\ResponseInterface;

interface RestClientInterface
{
    public function request(string $method, string $uri = '', array $options = []): ResponseInterface;
}