DataSift\Storyplayer\Injectables\HostnameHelper::getHostname PHP Method

getHostname() public static method

public static getHostname ( )
    public static function getHostname()
    {
        $hostname = getHostname();
        // we get different results on different operating systems
        // make sure the hostname is not the FQDN
        $dotPos = strpos($hostname, '.');
        if ($dotPos) {
            $hostname = substr($hostname, 0, $dotPos);
        }
        // all done
        return $hostname;
    }
HostnameHelper