mapguesser/src/Interfaces/Http/IResponse.php

9 lines
150 B
PHP
Raw Normal View History

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