9 lines
150 B
PHP
9 lines
150 B
PHP
<?php namespace MapGuesser\Interfaces\Http;
|
|
|
|
interface IResponse
|
|
{
|
|
public function getBody(): string;
|
|
|
|
public function getHeaders(): array;
|
|
}
|