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/HeaderAwareClientInterface.php

<?php

declare(strict_types=1);

namespace Laminas\Feed\Reader\Http;

interface HeaderAwareClientInterface extends ClientInterface
{
    /**
     * Allow specifying headers to use when fetching a feed.
     *
     * Headers MUST be in the format:
     *
     * <code>
     * [
     *     'header-name' => [
     *         'header',
     *         'values'
     *     ]
     * ]
     * </code>
     *
     * @param  string $uri
     * @return HeaderAwareResponseInterface
     */
    public function get($uri, array $headers = []);
}