DataSift\Storyplayer\DeviceLib\BaseAdapter::getHttpBasicAuthForHost PHP Method

getHttpBasicAuthForHost() public method

public getHttpBasicAuthForHost ( string $hostname ) : array | null
$hostname string
return array | null
    public function getHttpBasicAuthForHost($hostname)
    {
        if (!isset($this->httpAuthDetails[$hostname])) {
            return null;
        }
        return $this->httpAuthDetails[$hostname];
    }