19 lines
484 B
PHP
19 lines
484 B
PHP
<?php
|
|
|
|
namespace gullevek\AmazonIncentives\Client;
|
|
|
|
interface ClientInterface
|
|
{
|
|
/**
|
|
* @param string $url The URL being requested,
|
|
* including domain and protocol
|
|
* @param array<mixed> $headers Headers to be used in the request
|
|
* @param array<mixed>|string $params Can be nested for arrays and hashes
|
|
*
|
|
* @return String
|
|
*/
|
|
public function request(string $url, array $headers, $params): string;
|
|
}
|
|
|
|
// __END__
|