Laravel\Envoy\ConfigurationParser::getConfiguredServer PHP Method

getConfiguredServer() protected method

Get the configured server from the SSH config.
protected getConfiguredServer ( string $host ) : string | null
$host string
return string | null
    protected function getConfiguredServer($host)
    {
        if ($config = $this->getSshConfig($this->getSystemUser())) {
            return $config->findConfiguredHost($host);
        }
    }