LeagueWrap\Response::getHeader PHP Method

getHeader() public method

If the header is not present, return null.
public getHeader ( string $name ) : string | null
$name string
return string | null
    public function getHeader($name)
    {
        return $this->hasHeader($name) ? $this->headers[$name] : null;
    }