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