2020-06-26 00:02:24 +02:00
|
|
|
<?php namespace MapGuesser\Interfaces\Http;
|
|
|
|
|
|
|
|
interface IResponse
|
|
|
|
{
|
2020-07-05 21:47:32 +02:00
|
|
|
public function getBody(): string;
|
2020-06-26 00:02:24 +02:00
|
|
|
|
2020-07-05 21:47:32 +02:00
|
|
|
public function getHeaders(): array;
|
2020-06-26 00:02:24 +02:00
|
|
|
}
|