| Current Path : /home/rtorresani/www/vendor/laminas/laminas-feed/src/Reader/Http/ |
| Current File : //home/rtorresani/www/vendor/laminas/laminas-feed/src/Reader/Http/ResponseInterface.php |
<?php
declare(strict_types=1);
namespace Laminas\Feed\Reader\Http;
interface ResponseInterface
{
/**
* Retrieve the response body
*
* @return string
*/
public function getBody();
/**
* Retrieve the HTTP response status code
*
* @return int
*/
public function getStatusCode();
}