ec2dns\ec2dns::setCache PHP Method

setCache() protected method

dnsCache Setter
protected setCache ( string $type, string $tag, string $ip ) : void
$type string
$tag string
$ip string
return void
    protected function setCache($type, $tag, $ip)
    {
        $this->dnsCache[md5($type . $tag)] = ['ip' => $ip, 'created' => time()];
    }