![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-feed/src/Reader/Http/ |
<?php declare(strict_types=1); namespace Laminas\Feed\Reader\Http; interface HeaderAwareResponseInterface extends ResponseInterface { /** * Retrieve a header (as a single line) from the response. * * Header name lookups MUST be case insensitive. * * Since the only header values the feed reader consumes are singular * in nature, this method is expected to return a string, and not * an array of values. * * @param string $name Header name to retrieve. * @param null|mixed $default Default value to use if header is not present. * @return string */ public function getHeaderLine($name, $default = null); }