Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/laminas/laminas-feed/src/Reader/Http/
Upload File :
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();
}